linux - How can I get pyinstaller to working on Ubuntu? -


i using ubuntu 16 , installed python 3.5, installed pip3 , pip3 installed pyinstaller. not able run pyinstaller. whenever type in pyinstaller in the terminal, got below error? have add path? if so, how do that? thanks

pyinstaller: command not found 

first need find pip installed pyinstaller:

sudo find / -name pyinstaller 

then can either run using full path or add .bashrc file. add .bashrc, create following line or add path existing "export path=" line in .bashrc (found in home directory):

export path="/path/to/pyinstaller:$path" 

save file , logout/login have take effect.

to make path available users, add /etc/environment file (must sudo edited).


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -