Macportsで入れたMySQL5.5がまともに動かない上に、
一度入れるとMySQL5.1も導入できなくなった。
そこでHomebrewに移動することに。
Homebrewのインストール
ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
sudo easy_install pip
sudo pip install mysql-python
>>import MySQLdb
>>db = MySQLdb.connect(unix_socket="/Applications/MAMP/tmp/mysql/mysql.sock", user="root", passwd="root", db="mysql", charset="utf8")
>>db = MySQLdb.connect(unix_socket="/Applications/MAMP/tmp/mysql/mysql.sock", user="root", passwd="root", db="mysql", charset="utf8")
参考
続けてpython関係
何故だか分からないがfortranを入れる
brew install gfortran
numpy
sudo pip install numpy
sudo pip install numpy
sudo pip install ipython
以下、時間必要
scipy
sudo pip install -e git+https://github.com/scipy/scipy#egg=scipy-dev
matplotlib
sudo pip install -e git+https://github.com/matplotlib/matplotlib#egg=matplotlib-dev
sudo pip install -e git+https://github.com/scipy/scipy#egg=scipy-dev
matplotlib
sudo pip install -e git+https://github.com/matplotlib/matplotlib#egg=matplotlib-dev
scikit-learn
sudo pip install -U scikit-learn
sudo pip install -U scikit-learn
テスト用のnoseライブラリ
sudo pip install nose
テスト
nosetests sklearn --exe
nosetests sklearn --exe
下のように出た
Ran 1128 tests in 67.579s
OK (SKIP=12)
ついでに
SQLalchenmy
sudo pip install sqlalchenmy
Django
sudo pip install django
参考(というかほぼ全てそのまま)