在Python项目中运行出现了“AttributeError: ResourceManager instance has no attribute ‘_warn_unsafe_extraction'”问题,研究了一下,发现是setuptools在MacOS下的一个问题(见下图),我出现问题的是pymongo的库,需要删除pymongo,然后降级setuptools再重新安装。
解决方法:
1、删除pymongo:
1 |
|
2、降级setuptools:
1 2 |
|
3、重装pymongo:
1 |
|
问题解决!!!!!
附错误信息:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
原文链接:http://blog.yourtion.com/solve-warn_unsafe_extraction.html
本文链接:https://my.lmcjl.com/post/3887.html
4 评论