Last active
June 3, 2022 15:37
-
-
Save b0noI/2b0241051831a755714831e2fc98b2fe to your computer and use it in GitHub Desktop.
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
export ANACONDA_URL=https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64.sh | |
export ANACONDA_INSTALLER=anaconda_installer.sh | |
wget $ANACONDA_URL -O $ANACONDA_INSTALLER | |
chmod +x $ANACONDA_INSTALLER | |
./$ANACONDA_INSTALLER -b | |
echo "export PATH=$PATH:$HOME/anaconda3/bin" >> $HOME/.bashrc | |
source $HOME/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment