python - How do I correctly install pyinstaller? (what am I doing wrong?) -


i trying install pyinstaller (on ubuntu). used pip install pyinstaller, think worked fine. outputted

downloading/unpacking pyinstaller   running setup.py egg_info package pyinstaller      setup.py not yet supposed work. please use pyinstaller without installation.      complete output command python setup.py egg_info:   setup.py not yet supposed work. please use pyinstaller without installation.    ---------------------------------------- command python setup.py egg_info failed error code 1 in /home/alex/venv/base/build/pyinstaller storing complete log in /home/alex/.pip/pip.log 

i ran "pip install --upgrade pyinstaller" outputted

downloading/unpacking pyinstaller   running setup.py egg_info package pyinstaller      setup.py not yet supposed work. please use pyinstaller without installation.      complete output command python setup.py egg_info:   setup.py not yet supposed work. please use pyinstaller without installation.    ---------------------------------------- command python setup.py egg_info failed error code 1 in /home/alex/venv/base/build/pyinstaller storing complete log in /home/alex/.pip/pip.log 

but when try verify installation, manual suggests, "pyinstaller --version", got:

pyinstaller: command not found 

the manual says if occurs, should check have correct execution path in directory, /usr/bin/, think do. echo $path outputted

/home/my_name/venv/base/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/path/to/email_and_excel

what going on , how should install pyinstaller correctly?

thanks!

as error message says pyinstaller not "install" - download it, unpack , run using path put it or add path.

please rtfm can found here.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -