MySQL-python のインストールエラー

MySQL-python のインストールエラー

Python パッケージをインストールしようとしているのですが、毎回エラーが発生します。さまざまな Web ページで解決策を探しましたが、どれも私の問題を解決しませんでした。私が何か間違っているのか、それとも問題は別の場所にあるのかわかりません。

$ sudo pip install MySQL-python

Collecting MySQL-python
  Using cached MySQL-python-1.2.5.zip (108 kB)
    ERROR: Command errored out with exit status 1:
     command: /usr/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-kmndmtdh/MySQL-python/setup.py'"'"'; __file__='"'"'/tmp/pip-install-kmndmtdh/MySQL-python/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-install-kmndmtdh/MySQL-python/pip-egg-info
         cwd: /tmp/pip-install-kmndmtdh/MySQL-python/
    Complete output (7 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-kmndmtdh/MySQL-python/setup.py", line 13, in <module>
        from setup_posix import get_config
      File "/tmp/pip-install-kmndmtdh/MySQL-python/setup_posix.py", line 2, in <module>
        from ConfigParser import SafeConfigParser
    ModuleNotFoundError: No module named 'ConfigParser'
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

エラーメッセージ:

エラー_1

エラー_2

答え1

「mysql-python」をインストールするために使用した次の手順を試すことができます。

  1. Python 2.7をインストール

    (base) [test@localhost ~]$ conda install python=2.7
    
  2. 2番目の環境を作成します(2.7をベース環境として直接作成する場合)

    (base) [test@localhost ~]$ conda create -n test_mysql python=2.7
    
  3. python2.7でインストールされた最近作成された環境をアクティブ化します

    (base) [test@localhost ~]$ conda activate test_mysql
    
  4. インストールmysql-pythonその環境で

    (test_mysql) [test@localhost ~]$ conda install -c anaconda mysql-python
    
  5. インストールされたパッケージを確認する

    (test_mysql) [test@localhost ~]$ conda list |grep -i mysql
    
    mysql-connector-c         6.1.11               h597af5e_1    anaconda
    
    mysql-python              1.2.5            py27h7b6447c_0    anaconda
    

関連情報