yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel git
Linux
git clone https://github.com/yyuu/pyenv.git ~/.pyenv
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
Mac
brew install pyenv
pyenv install -l | grep ana #After display, insert the latest version
pyenv install anaconda2-2.5.0
pyenv global anaconda2-2.5.0 #Set anaconda to python
pyenv local * #Only in the current directory
conda install ipyparallel #use ipcluster
pip install vispy #High-speed dynamic visualization using GPU by OpenGL
pip install mpld3 #Automatically interactively visualize matplotlib. Inside, set the data to json and call javascript.
conda install statsmodels
conda install
PyCUDA https://pypi.python.org/pypi/pycudaで最新版を確認. wget * ./configure --cuda-root=/usr/local/cuda/version/cuda make -j 4 python setup.py install
Recommended Posts