web-dev-qa-db-ja.com

pyinstallerコマンドが見つかりません

(私はLinuxを使用しており、Stackoverflowがここに行くように言われたのでSuperUserを使用します!)

私はpyinstallerを使用したいので、私は彼らのドキュメントに従いました:

pip install pyinstaller  
pyinstaller my_script_name.py  

pip installは言う:

Successfully installed altgraph-0.15 dis3-0.1.2 future-0.16.0 macholib-1.9 pefile-2017.11.5 pyinstaller-3.3.1 setuptools-39.0.1

しかし、pyinstallerを実行すると、次のように表示されます。

pyinstaller: command not found

私は同じ結果をpip3でも試しました。

3
Yoran Jansen

1. pyinstallerの場所を見つける

find / -name "pyinstaller"

結果は次のようになります

/usr/local/python3/bin/pyinstaller

2./usr/bin/pyinstallerにcpします(Linuxは自動的にコマンドを見つけます)

cp /usr/local/python3/bin/pyinstaller /usr/bin/pyinstaller3.cp 

次に、pyinstallerを実行できます。

pSファイルをコピーしたくない場合は、pyinstallerを直接実行できます。

/usr/local/python3/bin/pyinstaller 

それが役に立てば幸い!

---------- UPDATE --------- doc-> Verifying the installation https://pyinstaller.readthedocs.io/en/stable/installation.html#インストールの確認

1
Derek