kaggle_1_环境配置

需要安装的基本就是各种科学计算环境的python包以及ipython。

注意首先要将python升级到2.7以上,参见下文3。


首先如果你机器上连pip都没有,还要安装pip

wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
python get-pip.py


1.安装一些包依赖:

yum -y install blas blas-devel lapack-devel lapack
yum -y install seaborn scipy
yum -y install freetype freetype-devel libpng libpng-devel
2.接着安装所需的包(使用豆瓣的地址速度会更快)

pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install seaborn 
pip install scipy
3.安装ipython:

pip Install ipython

注意如果python版本低于2.7的话需要升级python。

wget --no-check-certificate https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
tar xf Python-2.7.9.tar.xz
cd Python-2.7.9
./configure --prefix=/usr/local
make && make altinstall
mv /usr/bin/python /usr/bin/python2.6.6
ln -s /usr/local/bin/python2.7 /usr/bin/python

yum是不兼容 Python 2.7的,所以yum不能正常工作,我们需要指定 yum 的Python版本

#vi /usr/bin/yum
将文件头部的
#!/usr/bin/python

改成
#!/usr/bin/python2.6.6

Done!~~~撒花~~~




你可能感兴趣的:(kaggle)