Last active
February 11, 2019 23:10
-
-
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
This file contains 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/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