Skip to content Skip to sidebar Skip to footer

Can't Install Pyinstaller At Ubuntu

I'm using python2 and having trouble installing pyinstaller. Here's what I've tried: root@host:~/setup# pip install pyinstaller Collecting pyinstaller Using cached https://files.

Solution 1:

From my understanding, Pyinstaller v4.0 does not support Python 2 which is what I assume is being downloaded when you use pip install pyinstaller.

Answer :

  1. Visit Pyinstaller Release History to view the version you would like to install (all versions from Python v3.6 down to v3.0 support Python 2)

  2. Install the Pyinstaller version of your choice using: pip install pyinstaller==3.5 this should work for you!

Images below:

enter image description here

enter image description here

enter image description here

Post a Comment for "Can't Install Pyinstaller At Ubuntu"