ImportError:没有名为MySQLdb Python2.7的模块

问题描述 投票:0回答:1

我无法安装任何东西来修复它。我尝试了以下命令。

pip install MySQL-python when I run this please see the screen shot in error

pip安装mysqlclient brew安装mysql brew安装libmysqlclient-dev

more pictures [![enter image description here][1]][1][![enter image description here][1]][1]



  PASML-1717136:server $ Python2.7 main.py
    Traceback (most recent call last):
      File "main.py", line 68, in <module>
        HANDLER = get_handlers()
      File "main.py", line 59, in get_handlers
        adapter = MysqlAdapter(CONFIG.DB_CONN)
      File "/Users/mnaeem668/Projects/Automation_KPI/server/../server/adapters/mysql_adapter.py", line 24, in __init__
        self._connect()
      File "/Users/mnaeem668/Projects/Automation_KPI/server/../server/adapters/mysql_adapter.py", line 33, in _connect
        self.engine = create_engine(conn_str)
      File "/Library/Python/2.7/site-packages/sqlalchemy/engine/__init__.py", line 479, in create_engine
        return strategy.create(*args, **kwargs)
      File "/Library/Python/2.7/site-packages/sqlalchemy/engine/strategies.py", line 87, in create
        dbapi = dialect_cls.dbapi(**dbapi_args)
      File "/Library/Python/2.7/site-packages/sqlalchemy/dialects/mysql/mysqldb.py", line 118, in dbapi
        return __import__("MySQLdb")
    ImportError: No module named MySQLdb
    Exception AttributeError: "'NoneType' object has no attribute 'close'" in <bound method MysqlAdapter.__del__ of <server.adapters.mysql_adapter.MysqlAdapter object at 0x11240cb50>> ignored

更新:安装python-MySQLdb

ERROR: Could not find a version that satisfies the requirement python-MySQLdb (from versions: none)
ERROR: No matching distribution found for python-MySQLdb

enter image description hereenter image description hereenter image description here

python python-2.7 mysql-python
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.