2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pip3でmysql-connectorのインストール方法

Last updated at Posted at 2017-07-21

環境

  • mac OSX 10.12.5
  • pip3のバージョン9.0.1

インストール方法

  • 下記コマンド実行し、pip3でインストールできるmysql-connectorパッケージを探す。
    **mysql-connector (2.1.6)**が現在時点(2017/07/21)での最新。
Console
$ pip3 search mysql-connector
    ・
    ・
    ・
tendril-connector-tally (0.1.1)                                       - Tally XML interface connector for tendril
netdrive-connector (1.3.2)                                            - GUI tool to setup mountable SFTP and WebDAV connections on Linux/UNIX systems.
mysql-connector (2.1.6)                                               - MySQL driver written in Python
  INSTALLED: 2.1.4
  LATEST:    2.1.6
mysql-connector-python-rf (2.2.2)                                     - MySQL driver written in Python
esia-connector (0.16)                                                 - ESIA integration library
    ・
    ・
    ・
  • 最新バージョンの2.1.6を指定してインストールする。
Console
$ pip3 install mysql-connector==2.1.6
Successfully installed mysql-connector-2.1.6

Successfully installedが表示されれば正常にインストールされています。
これでOK!

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?