Last active
February 22, 2016 08:32
-
-
Save hanpama/77e2bc8d6672c4ccbf2f to your computer and use it in GitHub Desktop.
Anaconda Installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 파이썬 아나콘다 배포판 설치 | |
cd /tmp | |
wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda3-2.3.0-Linux-x86_64.sh | |
chmod +x Anaconda3-2.3.0-Linux-x86_64.sh | |
sudo bash Anaconda3-2.3.0-Linux-x86_64.sh -b -p ${HOME}/anaconda | |
echo PATH="${HOME}/anaconda/bin:\$PATH" >> ${HOME}/.profile | |
export PATH="${HOME}/anaconda/bin:$PATH" | |
pip install --upgrade pip | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment