gpt4 book ai didi

python - 如何正确安装pyinstaller

转载 作者:太空狗 更新时间:2023-10-29 22:15:14 25 4
gpt4 key购买 nike

我尝试使用 pip 安装 pyinstaller(在 Ubuntu 16.0.4 上):

pip3 install pyinstaller

Collecting pyinstaller
Using cached PyInstaller-3.2.tar.gz
Collecting setuptools (from pyinstaller)
Using cached setuptools-25.1.3-py2.py3-none-any.whl
Building wheels for collected packages: pyinstaller
Running setup.py bdist_wheel for pyinstaller ... done
Stored in directory: /home/.../.cache/pip/wheels/fc/b3/10/006225b1c1baa34750a7b587d3598d47d18114c06b696a8e0e
Successfully built pyinstaller
Installing collected packages: setuptools, pyinstaller
Successfully installed pyinstaller setuptools-20.7.0
You are using pip version 8.1.1, however version 8.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

但是,如果我随后尝试调用 pyinstaller,我会收到错误消息 pyinstaller: command not found

当 pip 安装似乎已成功时,为什么我无法运行 pyinstaller。

最佳答案

pyinstaller 似乎已正确安装,但该命令在 PATH 上不可用。您需要找到可执行文件的放置位置。这将取决于您的系统配置,如果您使用的是 virtualenv,以及其他系统和使用相关因素。

您可以尝试使用 find 来定位可执行文件:

sudo find / -name pyinstaller

这会递归地查找名为 pyinstaller 的文件,从文件系统的根目录开始。如果您知道可执行文件可能放在哪里,您可以将搜索范围缩小到该目录。

一旦你有了可执行文件的绝对路径,你就可以直接调用它:

/my/path/to/pyinstaller

或者,如果您不使用 virtualenv 或其他任何东西,您可以修改 PATH 以包含可执行文件的父目录:

$PATH = $PATH:/my/path/to

如果你想让这个改变永久化,你需要modify a script somewhere .

关于python - 如何正确安装pyinstaller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38746462/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com