Skip to content

Instantly share code, notes, and snippets.

@hanpama
Last active February 22, 2016 08:32
Show Gist options
  • Save hanpama/77e2bc8d6672c4ccbf2f to your computer and use it in GitHub Desktop.
Save hanpama/77e2bc8d6672c4ccbf2f to your computer and use it in GitHub Desktop.
Anaconda Installation
# 파이썬 아나콘다 배포판 설치
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