我使用的是Python 3.6.0
python --version
Python 3.6.0
我正在尝试使用pip将pyinstaller安装到自定义文件夹
pip install pyinstaller --target=/prj/qc-tools/lib/pyinstaller
Collecting pyinstaller
Collecting setuptools (from pyinstaller)
Using cached setuptools-36.3.0-py2.py3-none-any.whl
Installing collected packages: setuptools, pyinstaller
Successfully installed pyinstaller-3.2.1 setuptools-36.3.0
该文件夹中没有pyinstaller.py
。
ls
easy_install.py pkg_resources __pycache__ PyInstaller PyInstaller-3.2.1.dist-info setuptools setuptools-36.3.0.dist-info
pyinstaller.org上的文档没有再说什么了。我该怎么办?
答案 0 :(得分:1)
pip用于python2,pip3用于python3。您应该安装pip3并尝试命令pip3 install pyinstaller --target=/prj/qc-tools/lib/pyinstaller
答案 1 :(得分:0)
我最终没有使用pip install。我从pypi下载了tarball,只提取了内容,我可以直接使用pyinstaller.py将我的脚本转换为可执行文件。