LoginSignup
1
2

More than 5 years have passed since last update.

ModuleNotFoundError: No module named 'ConfigParser'

Last updated at Posted at 2019-05-20

Python3にてconfigparserというモジュールを使用する際に以下のエラーメッセージが発生した。

import ConfigParser
ErrorMessage
Traceback (most recent call last):
  File "test.py", line 1, in <module>
    import ConfigParser
ModuleNotFoundError: No module named 'ConfigParser'

モジュールの名称が以下のように変更になったようだ
(すべて小文字になった。)

import configparser

参考サイト:https://codeday.me/jp/qa/20181130/31673.html

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2