機械学習のためのpythonの設定(CentOS6.5)
機械学習のプログラムはRとpythonの2強のようなので、pythonも使かわないと
python2.7のインストール(centOS6.5はデフォルトで2.6)
yum install python27
easy_install およびpipのインストール
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
easy_install pip
各種ライブラリに必要なライブラリのインストール
yum -y install gcc gcc-c++ kernel-devel
yum -y install python-devel
wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.27.tar.gz
cd distribute-0.6.27
python2.7 setup.py install
yum install libpng-devel -y
各種機械学習系ライブラリのインストール
pip install numpy
pip install scipy
pip install matplotlib
pip install gensim