Last active
May 11, 2021 21:33
-
-
Save zodiacfireworks/987c1cc219c1557199c2489b0ed1b93b 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
#! /usr/bin/env bash | |
wget -O ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh | |
chmod +x ~/miniconda.sh | |
sudo ~/miniconda.sh -b -p /opt/conda | |
sudo rm -rf ~/miniconda.sh | |
sudo chown -R $(whoami):users /opt/conda | |
sudo chmod -R 775 /opt/conda | |
sudo ln -sf /opt/conda/bin/conda /usr/local/bin | |
sudo ln -sf /opt/conda/bin/activate /usr/local/bin | |
sudo ln -sf /opt/conda/bin/deactivate /usr/local/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment