python中nomodulenamed怎么解决_python:ModuleNotFoundError:Nomodulenamed解决方法
问题:Complete output from command python setup.py egg_info:Traceback (most recent call last):File "", line 1, inFile "/tmp/pip-build-c_y6ttgr/MySQL-python/setup.py", line 13, infrom setup_posix import g
问题:
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
如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!
更多推荐
所有评论(0)