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 #Fügen Sie nach der Anzeige die neueste Version ein
pyenv install anaconda2-2.5.0
pyenv global anaconda2-2.5.0 #Setze Anaconda auf Python
pyenv local * #Nur im aktuellen Verzeichnis
conda install ipyparallel #benutze ipcluster
pip install vispy #Dynamische Hochgeschwindigkeitsvisualisierung mit GPU von OpenGL
pip install mpld3 #Matplotlib automatisch interaktiv visualisieren. Im Inneren werden die Daten auf json gesetzt und Javascript wird aufgerufen.
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