Forked from mGalarnyk/Install_Anaconda_Ubuntu_Python3.sh
Created
May 27, 2021 15:27
-
-
Save persianyagami90xs/df565bb89aba8b111a9f839dcdd71f0e to your computer and use it in GitHub Desktop.
Install Anaconda on Ubuntu (Python 3) for the blog https://medium.com/@GalarnykMichael/install-python-on-ubuntu-anaconda-65623042cb5a#.8fn64sfa5
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/ | |
wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh | |
bash Anaconda3-5.0.1-Linux-x86_64.sh -b -p ~/anaconda | |
rm Anaconda3-5.0.1-Linux-x86_64.sh | |
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc | |
# Refresh basically | |
source .bashrc | |
conda update conda |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment