Skip to content

Instantly share code, notes, and snippets.

@mGalarnyk
Last active February 11, 2019 23:10
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save mGalarnyk/ade3fc8646c8b53a6ecdc84085a38ca0 to your computer and use it in GitHub Desktop.
Save mGalarnyk/ade3fc8646c8b53a6ecdc84085a38ca0 to your computer and use it in GitHub Desktop.
Install Anaconda on Mac Bash Script (Python 3) 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/Anaconda3-4.1.1-MacOSX-x86_64.sh
bash Anaconda3-4.1.1-MacOSX-x86_64.sh -b -p ~/anaconda
rm Anaconda3-4.1.1-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