Pyinstaller Setup Failed With "setup.py Is Not Yet Supposed To Work. Please Use Pyinstaller Without Installation."
I was trying to 'pip install pyinstaller' on my Mountain Lion. It failed with setup.py is not yet supposed to work. Please Use PyInstaller without installation. There is a ticket
Solution 1:
As it says "it is notyet supposed to work" - if you read the documents you will find that you just unzip/unpack it into a local directory and run it from there.
You are not supposed to run setup.py
in pyinstaller
at all - see here for how to set up pyinstaller.
Once installed and on your path you run by typing pyinstaller your_main.py
in your project directory. You may have to generate a specification file and edit it for things to work correctly - See the documentation!
Post a Comment for "Pyinstaller Setup Failed With "setup.py Is Not Yet Supposed To Work. Please Use Pyinstaller Without Installation.""