Skip to content

Instantly share code, notes, and snippets.

@mGalarnyk
Last active May 21, 2017 06:50
Show Gist options
  • Save mGalarnyk/3396298b5d4cd046a20eb3a2b4e92320 to your computer and use it in GitHub Desktop.
Save mGalarnyk/3396298b5d4cd046a20eb3a2b4e92320 to your computer and use it in GitHub Desktop.
Install Anaconda on Mac Bash Script (Python 2) for my blog https://medium.com/@GalarnykMichael/install-python-on-mac-anaconda-ccd9f2014072
# Go to home directory
cd ~
# You can change what anaconda version you want at
# https://repo.continuum.io/archive/
curl -Ok https://repo.continuum.io/archive/Anaconda2-4.2.0-MacOSX-x86_64.sh
bash Anaconda2-4.2.0-MacOSX-x86_64.sh -b -p ~/anaconda
rm Anaconda2-4.2.0-MacOSX-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bash_profile
# Refresh basically
source .bash_profile
conda update conda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment