pyinstaller
(Ubuntuに)インストールしようとしています。を使用pip install pyinstaller
しましたが、うまく機能したと思います。出力した
Downloading/unpacking pyinstaller
Running setup.py egg_info for package pyinstaller
setup.py is not yet supposed to work. Please Use PyInstaller without installation.
Complete output from command python setup.py egg_info:
setup.py is not yet supposed to work. Please Use PyInstaller without installation.
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /home/alex/venv/base/build/pyinstaller
Storing complete log in /home/alex/.pip/pip.log
次に、出力された「pip install --upgrade pyinstaller」を実行しました
Downloading/unpacking pyinstaller
Running setup.py egg_info for package pyinstaller
setup.py is not yet supposed to work. Please Use PyInstaller without installation.
Complete output from command python setup.py egg_info:
setup.py is not yet supposed to work. Please Use PyInstaller without installation.
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /home/alex/venv/base/build/pyinstaller
Storing complete log in /home/alex/.pip/pip.log
しかし、マニュアルが示唆するように、「pyinstaller --version」を使用してインストールを確認しようとすると、次のようになりました。
pyinstaller: command not found
マニュアルには、これが発生した場合、自分のディレクトリ /usr/bin/ に正しい実行パスがあることを確認する必要があると書かれています。Echo $PATH 出力
/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
何が起こっているのか、pyinstaller を正しくインストールするにはどうすればよいですか?
ありがとう!