gpt4 book ai didi

python - PyInstaller 的问题

转载 作者:太空宇宙 更新时间:2023-11-04 00:09:06 24 4
gpt4 key购买 nike

我想使用 PyInstaller 将应用程序捆绑到可执行文件中。由于 geopandas 库,我遇到了问题。目前我的脚本 throwaway.py 只包含以下导入:

导入 geopandas

但是运行 pyinstaller throwaway.py 不起作用。 PyQt5 似乎有问题,只有 matplotlib 导入。

pyinstaller 的日志太长,无法包含在此处,但以下显示了最后遇到的异常:

Exception:
Cannot find existing PyQt5 plugin directories
Paths checked: c:/qt/qt_1489878162099/_b_env/Library/plugins

我不确定如何处理这个问题,但有几个概念上的选择:

  • 找到一种方法来排除 matplotlib 的 geopandas 导入。我没有使用 matplotlib,所以我真的不需要首先将它打包
  • 弄清楚为什么会出现这个问题并预防/修复它

接下来我能做什么?

最佳答案

这个 pyinstaller -y -d --clean throwaway.py 对我有用。

enter image description here

另外,检查这个 question .

递归限制存在问题,声明 here .尝试像这样增加它:

import sys
sys.setrecursionlimit(5000)

关于python - PyInstaller 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53116243/

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