Every  Thing
Every Thing

Reputation: 333

PyInstaller to executable file in lunx, giving : error running upx -v?

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

See Output

Upvotes: 1

Views: 253

Answers (1)

Every  Thing
Every Thing

Reputation: 333

I used below command and its worked

pyinstaller myfile.py --upx-dir=..\upx391w -y --onefile

Upvotes: 1

Related Questions