python:ModuleNotFoundError:Nomodulenamed解决方法
程序员文章站
2022-07-07 23:42:27
问题:
Complete output from command python setup.py egg_info:
Traceback (most recent...
问题:
Complete output from command python setup.py egg_info: Traceback (most recent call last): File "", line 1, in File "/tmp/pip-build-c_y6ttgr/MySQL-python/setup.py", line 13, in from setup_posix import get_config File "/tmp/pip-build-c_y6ttgr/MySQL-python/setup_posix.py", line 2, in from ConfigParser import SafeConfigParser ModuleNotFoundError: No module named 'ConfigParser' ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-c_y6ttgr/MySQL-python/
解决:
方法一:
修改six模块为
try: import configparser except: from six.moves import configparser
方法二:
cp /usr/local/lib/python3.5/configparser.py /usr/local/lib/python3.5/ConfigParser.py
推荐阅读
-
自己编程中遇到的Python错误和解决方法汇总整理
-
Python升级提示Tkinter模块找不到的解决方法
-
Python安装Imaging报错:The _imaging C module is not installed问题解决方法
-
用VIM写Python代码缩进问题的解决方法
-
Python中遍历字典过程中更改元素导致异常的解决方法
-
Python2.x中str与unicode相关问题的解决方法
-
python write无法写入文件的解决方法
-
python提示No module named images的解决方法
-
Python 创建新文件时避免覆盖已有的同名文件的解决方法
-
在python3中pyqt5和mayavi不兼容问题的解决方法