2016-12-17 46 views

回答

0

在Python 2这个工程:

from ConfigParser import SafeConfigParser 

Python是大小写敏感的,在Python 3模块更名为configparser所以你需要进口这样的:

from configparser import SafeConfigParser 

看起来你要安装的库为Python 2.您需要获得Python 3的版本。

相关问题