python - 为在 Pycharm 中构建的项目运行 pyinstaller 时如何包含来自 venv 目录的依赖项?

标签 python pycharm pyinstaller macos-high-sierra

我是 Python 和 PyCharm 的新手。我在 OSX High Sierra 上运行。

我在 PyCharm 中创建了一个使用 lxml 的项目。我已经将 lxml 4.1.1 安装为项目依赖项,我可以在 myProject/venv/lib/site-package/lxml 下看到它的文件

我可以在 PyCharm 中毫无问题地运行我的脚本,但我一直无法构建包含 lxml 库的可执行文件。

我从命令行使用 pyinstaller 3.3.1。项目构建,但是当我运行可执行文件时,我得到了他的输出:

追溯(最近的调用最后): 文件“analyze.py”,第 13 行,位于 导入错误:没有名为 lxml 的模块 [4222] 执行脚本分析失败

我一直在寻找一些命令行开关,告诉 pyinstaller 在 venv 目录下包含依赖项,但没有找到。

任何帮助将不胜感激......

这是我的构建命令和输出:

pyinstaller --clean --onefile analyze.py
51 INFO: PyInstaller: 3.3.1
51 INFO: Python: 2.7.10
60 INFO: Platform: Darwin-17.4.0-x86_64-i386-64bit
60 INFO: wrote /Users/gludwig/PycharmProjects/XML_Analyzer/analyze.spec
66 INFO: UPX is not available.
66 INFO: Removing temporary files and cleaning cache in /Users/gludwig/Library/Application Support/pyinstaller
76 INFO: Extending PYTHONPATH with paths
['/Users/gludwig/PycharmProjects/XML_Analyzer',
 '/Users/gludwig/PycharmProjects/XML_Analyzer']
76 INFO: checking Analysis
76 INFO: Building Analysis because out00-Analysis.toc is non existent
76 INFO: Initializing module dependency graph...
79 INFO: Initializing module graph hooks...
130 INFO: running Analysis out00-Analysis.toc
138 INFO: Caching module hooks...
141 INFO: Analyzing /Users/gludwig/PycharmProjects/XML_Analyzer/analyze.py
2363 INFO: Loading module hooks...
2364 INFO: Loading module hook "hook-httplib.py"...
2364 INFO: Loading module hook "hook-encodings.py"...
2874 INFO: Looking for ctypes DLLs
2874 INFO: Analyzing run-time hooks ...
2879 INFO: Looking for dynamic libraries
2995 INFO: Looking for eggs
2995 INFO: Using Python library /System/Library/Frameworks/Python.framework/Versions/2.7/Python
2996 INFO: Warnings written to /Users/gludwig/PycharmProjects/XML_Analyzer/build/analyze/warnanalyze.txt
3009 INFO: Graph cross-reference written to /Users/gludwig/PycharmProjects/XML_Analyzer/build/analyze/xref-analyze.html
3087 INFO: checking PYZ
3087 INFO: Building PYZ because out00-PYZ.toc is non existent
3087 INFO: Building PYZ (ZlibArchive) /Users/gludwig/PycharmProjects/XML_Analyzer/build/analyze/out00-PYZ.pyz
3331 INFO: Building PYZ (ZlibArchive) /Users/gludwig/PycharmProjects/XML_Analyzer/build/analyze/out00-PYZ.pyz completed successfully.
3403 INFO: checking PKG
3403 INFO: Building PKG because out00-PKG.toc is non existent
3403 INFO: Building PKG (CArchive) out00-PKG.pkg
5669 INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.
5685 INFO: Bootloader /Users/gludwig/Library/Python/2.7/lib/python/site-packages/PyInstaller/bootloader/Darwin-64bit/run
5685 INFO: checking EXE
5685 INFO: Building EXE because out00-EXE.toc is non existent
5685 INFO: Building EXE from out00-EXE.toc
5686 INFO: Appending archive to EXE /Users/gludwig/PycharmProjects/XML_Analyzer/dist/analyze
5703 INFO: Fixing EXE for code signing /Users/gludwig/PycharmProjects/XML_Analyzer/dist/analyze
5716 INFO: Building EXE from out00-EXE.toc completed successfully.

此外,pyinstaller 在构建过程中会生成警告文件,其中包含以下内容:

missing module named org - imported by copy
missing module named _sha512 - imported by hashlib
missing module named _sha256 - imported by hashlib
missing module named _md5 - imported by hashlib
missing module named _sha - imported by hashlib
missing module named 'org.python' - imported by pickle
missing module named _subprocess - imported by subprocess
missing module named msvcrt - imported by subprocess, getpass
missing module named riscosenviron - imported by os
missing module named riscospath - imported by os
missing module named riscos - imported by os
missing module named ce - imported by os
missing module named _emx_link - imported by os
missing module named os2 - imported by os
missing module named nt - imported by os, ntpath
missing module named _winreg - imported by mimetypes, urllib
missing module named OverrideFrom23 - imported by Carbon.Res
missing module named SOCKS - imported by ftplib
missing module named rourl2path - imported by urllib
missing module named lxml - imported by /Users/gludwig/PycharmProjects/XML_Analyzer/analyze.py

我还尝试以这种方式为 pyinstaller 提供 venv 中库条目的路径:

pyi-makespec --paths=~/PycharmProjects/XML_Analyzer\ 路径=~/PycharmProjects/XML_Analyzer/venv/lib/python2.7/sitepackages/lxml analyze.py pyinstaller --onefile analyze.py

它没有帮助。

最佳答案

George 提供的答案让我走上了正确的方向,但我选择了另一条路

我使用 --paths 命令行选项(参见 here )来指示站点包目录的位置,这为我解决了这个问题。 我正在使用 Windows 并想要一个可执行文件,所以这是命令行

path\to\pyinstaller.exe --onefile --paths path\to\venv\Lib\site-packages file.py

关于python - 为在 Pycharm 中构建的项目运行 pyinstaller 时如何包含来自 venv 目录的依赖项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48757977/

相关文章:

python - 单击按钮时如何更改 wxpython gizmo LED 颜色

python - pulp.solvers.PulpSolverError : PuLP: cannot execute glpsol. exe

python - PyCharm 有没有办法在调试时检查对象的方法?

python - Pyinstaller sys.executable复制目录时出错

python - Pyinstaller 3 使用 --onefile 添加数据文件

python - 在 python 2 和 python 3 上卸载 openCV

python - 写入 CSV 文件时如何追加到新行

python - 使用 pandas 从一列字典创建一个热编码

python - PyCharm 和 VirtualEnvs - 如何删除旧版本

python - 使用 pyinstaller 找不到 .exe 文件的输出文件夹