Last active
May 21, 2017 06:50
-
-
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
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
# 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