Moshe Sidgiyaev
Moshe Sidgiyaev

Reputation: 11

How to convert python script to exe Without additional files

I want to convert my python script to exe without additional files like ddl, pyd.. Is it possible?

Upvotes: 0

Views: 829

Answers (1)

VanDarkholme
VanDarkholme

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

Related Questions