0

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

1 Answers1

1

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