Reputation: 11
I want to convert my python script to exe without additional files like ddl, pyd.. Is it possible?
Upvotes: 0
Views: 829
Reputation: 75
Use pyinstaller https://github.com/pyinstaller/pyinstaller
Install it by running pip install pyinstaller
in terminal / console
Then run pyinstaller --onefile yourscriptsname.py
and it will create you an exe file in the same directory
Upvotes: 1