Pyinstaller --onefile question

Asked 1 years ago, Updated 1 years ago, 59 views

I'm trying to turn the stopwatch program into an EXE extension using Pysintaller If you do not include the --onefile syntax, the extension of the completed files is .There's a python, but this one doesn't have Python installed Does it work on your computer? Or do I have to use --onefile to make it a single EXE extension to run on a program that does not have Python installed?

python pyinstaller

2022-09-21 13:49

1 Answers

Pyinstaller-like programs are programs that bind Python executors and libraries for easy deployment. It also contains Python Executor (python.dll). It doesn't do anything unusual.

The .pyd file is a Python extension module file. A file compiled with normal c/c++ that is only available on Python. Pe format like dll in window, but cannot be called alone.


2022-09-21 13:49

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.