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

Python:ModuleNotFoundError:モジュール名がありません'mysql'

    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. クエリ結果の表示に問題があります

    2. WebSecurityConfigurerAdapterのhttpBasicおよびjdbcAuthenticationによるユーザー検証の問題

    3. レコードへの変更の履歴を追跡するためのMySQLオプション/機能はありますか?

    4. MySQLで制約の名前を見つける方法