1
0

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.

MySQLdbのための環境設定

Last updated at Posted at 2017-08-21

1 MySQLdbはpython2にしか対応していないのでpyenvでpython2の環境を整える

$ pyenv install 2.7.13
$ pyenv local 2.7.13

python2.7.13での動作は確認
古いversionだとうまくいかない場合がある

2 そのままMySQL-PythonをinstallするとEnvironmentError: mysql_config not foundというerrorが出るので下記のコマンドを実行する

sudo apt-get install libmysqlclient-dev

3 MySQL-Pythonをinstallする

pip install MySQL-Python

*sudoをつけてはいけない

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?