sql >> データベース >  >> RDS >> Mysql

ImportError:「MySQL」という名前のモジュールがありません

    私も同様の問題に直面していました。私の環境の詳細-Python2.7.11pip9.0.1CentOSリリース5.11(最終版)

    Pythonインタープリターのエラー-

    >>> import mysql.connector
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    ImportError: No module named mysql.connector
    >>>
    

    pipを使用して利用可能なモジュールを検索します-

    $ pip search mysql-connector | grep --color mysql-connector-python
    
    
    
    mysql-connector-python-rf (2.2.2)        - MySQL driver written in Python
    mysql-connector-python (2.0.4)           - MySQL driver written in Python
    

    mysql-connector-python-rfをインストールします-

    $ pip install mysql-connector-python-rf
    

    確認

    $ python
    Python 2.7.11 (default, Apr 26 2016, 13:18:56)
    [GCC 4.1.2 20080704 (Red Hat 4.1.2-54)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import mysql.connector
    >>>
    

    ありがとう=)

    python3以降の場合は、次のコマンドを使用します。$ pip3 install mysql-connector-python-rf



    1. MySQL例外-データ読み取り中に致命的なエラーが発生しました

    2. Entity FrameworkがネストされたSQLクエリを生成するのはなぜですか?

    3. 特権テーブルを開いてロックできません:テーブル'mysql.user'が存在しません

    4. UPDATEデータベースクエリを使用したSQL構文エラー