MySQL-python 설치 오류

MySQL-python 설치 오류

Python 패키지를 설치하려고 하는데 매번 오류가 발생합니다. 다양한 웹페이지에서 해결책을 찾았지만 그 어느 것도 내 문제를 해결하지 못했습니다. 제가 뭔가 잘못하고 있는 것인지, 아니면 다른 곳에 문제가 있는 것인지 모르겠습니다.

$ 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. 파이썬 2.7 설치

    (base) [test@localhost ~]$ conda install python=2.7
    
  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
    

관련 정보