python无法安装pyinstaller,报错:AttributeError: module ‘enum‘ has no attribute ‘IntFlag‘

本人使用的anaconda,python版本为3.6,之前是基于pip,安装的python3.5直接就可以pip install pyinstaller ,但是使用py3.6版本时却失败,报错如下:
python无法安装pyinstaller,报错:AttributeError: module ‘enum‘ has no attribute ‘IntFlag‘
后查阅资料发现py3.6版本后enum34已经不兼容,故无法安装,将该包直接卸载后就可以使用。尝试查看自己是否安装enum,在窗口输入pip list发现如下:python无法安装pyinstaller,报错:AttributeError: module ‘enum‘ has no attribute ‘IntFlag‘
卸载enum,pip uninstall enum34.卸载后,再安装pip install pyinstaller -i https://pypi.tuna.tsinghua.edu.cn/simple/
我这里用的时清华镜像。成功安装如下:
python无法安装pyinstaller,报错:AttributeError: module ‘enum‘ has no attribute ‘IntFlag‘

上一篇:effective C++读书笔记(条款02) 2020/12/15


下一篇:schema与数据类型优化-高性能mysql