Reputation: 333
I tried to get executable file using PyInstaller on Linux terminal but its throwing error running upx -v. I tried with both .py and .spec file but same error
Same process i tried on windows its worked fine.
I am using :
1. Python : 3.5.7
2. PyInstaller : 3.5.
For more details pleas find check below image
Upvotes: 1
Views: 253
Reputation: 333
I used below command and its worked
pyinstaller myfile.py --upx-dir=..\upx391w -y --onefile
Upvotes: 1