2016-12-17 78 views

回答

0

在Python 2這個工程:

from ConfigParser import SafeConfigParser 

Python是大小寫敏感的,在Python 3模塊更名爲configparser所以你需要進口這樣的:

from configparser import SafeConfigParser 

看起來你要安裝的庫爲Python 2.您需要獲得Python 3的版本。

相關問題