python:ModuleNotFoundError:Nomodulenamed解决方法
程序员文章站
2022-04-19 18:22:05
问题:
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文件循环写入行时防止覆盖的解决方法
-
Python ValueError: invalid literal for int() with base 10 实用解决方法
-
C++ 调用Python3 脚本中无法引入内建模块的问题解决方法
-
Python遍历zip文件输出名称时出现乱码问题的解决方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
详解windows python3.7安装numpy问题的解决方法
-
Ubuntu18.04下python版本完美切换的解决方法
-
nohup后台启动Python脚本,log不刷新的解决方法
-
python线程中的同步问题及解决方法