当前位置: 移动技术网 > IT编程>脚本编程>Python > python:ModuleNotFoundError:Nomodulenamed解决方法

python:ModuleNotFoundError:Nomodulenamed解决方法

2018年04月09日  | 移动技术网IT编程  | 我要评论

uutxt小说下载网,热火队赛程,王百瑜

问题:

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

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网