Skip to content

Instantly share code, notes, and snippets.

@b0noI
Last active June 3, 2022 15:37
Show Gist options
  • Save b0noI/2b0241051831a755714831e2fc98b2fe to your computer and use it in GitHub Desktop.
Save b0noI/2b0241051831a755714831e2fc98b2fe to your computer and use it in GitHub Desktop.
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