402 Stimmen

Python 3 ImportError: Kein Modul namens 'ConfigParser'

Ich versuche, das Paket MySQL-python mit pip install zu installieren, aber ich erhalte einen ImportError.

Jans-MacBook-Pro:~ jan$ /Library/Frameworks/Python.framework/Versions/3.3/bin/pip-3.3 install MySQL-python
Downloading/unpacking MySQL-python
  Running setup.py egg_info for package MySQL-python
    Traceback (most recent call last):
      File "", line 16, in 
      File "/var/folders/lf/myf7bjr57_jg7_5c4014bh640000gn/T/pip-build/MySQL-python/setup.py", line 14, in 
        from setup_posix import get_config
      File "./setup_posix.py", line 2, in 
        from ConfigParser import SafeConfigParser
    ImportError: No module named 'ConfigParser'
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "", line 16, in 

  File "/var/folders/lf/myf7bjr57_jg7_5c4014bh640000gn/T/pip-build/MySQL-python/setup.py", line 14, in 

    from setup_posix import get_config

  File "./setup_posix.py", line 2, in 

    from ConfigParser import SafeConfigParser

ImportError: No module named 'ConfigParser'

----------------------------------------
Command python setup.py egg_info failed with error code 1 in /var/folders/lf/myf7bjr57_jg7_5c4014bh640000gn/T/pip-build/MySQL-python
Storing complete log in /Users/jan/.pip/pip.log
Jans-MacBook-Pro:~ jan$ 

Irgendwelche Ideen?

11voto

Abhijit Manepatil Punkte 497

Zusätzliche Informationen:

Python 2x

import ConfigParser

Python 3x

import configparser

9voto

Gaurav Nagpal Punkte 155

Wenn Sie CentOS verwenden, müssen Sie Folgendes verwenden:

  1. yum install python34-devel.x86_64
  2. yum groupinstall -y 'development tools'
  3. pip3 install mysql-connector
  4. pip install mysqlclient

8voto

Akif Punkte 4510

Kompatibilität von Python 2/3 für configparser kann einfach durch die six-Bibliothek gelöst werden

from six.moves import configparser

7voto

Ich hatte das gleiche Problem. Es stellte sich heraus, dass ich python3 devel auf meinem Centos installieren musste. Zuerst müssen Sie nach dem Paket suchen, das mit Ihrem System kompatibel ist.

yum search python3 | grep devel

Dann installieren Sie das Paket wie folgt:

yum install -y python3-devel.x86_64

Dann installieren Sie mysqlclient von pip

pip install mysqlclient

7voto

Roy Ash Punkte 1078

Führen Sie pip3 install PyMySQL aus und dann pip3 install mysqlclient. Hat bei mir funktioniert

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X