我正在尝试将setuptools
从19.6.2升级/降级到20.9。
我使用解决方法--ignore-installed
安装新版本的setuptools
。
它已成功安装,但我仍然可以在python的setuptools-19.6.2-py3.5.egg
路径中找到site-package
文件。
我正在尝试将我的python脚本转换为.exe
。当我尝试运行.exe
时崩溃会发出以下错误。:
Traceback (most recent call last):
File "site-packages\PyInstaller\loader\rthooks\pyi_rth_pkgres.py", line 11, in
<module>
`File "c:\anaconda3\lib\site-packages\PyInstaller\loader\pyimod03_importers.py"
, line 389, in load_module
exec(bytecode, module.__dict__)
File "site-packages\setuptools-19.6.2-py3.5.egg\pkg_resources\__init__.py", li
ne 75, in <module>
File "site-packages\setuptools-19.6.2-py3.5.egg\pkg_resources\extern\__init__.
py", line 60, in load_module
ImportError: The 'packaging' package is required; normally this is bundled with
this package so if you get this warning, consult the packager of your distributi
on.
Failed to execute script pyi_rth_pkgres
PyInstaller
仍在使用之前版本的setuptools
如果有人遇到过这个问题,请帮忙。