-
-
Save carlosal1015/bcd8648b3cb930fb7eb4b3d17f895df5 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 | |
curl -so ~/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