Skip to content

Instantly share code, notes, and snippets.

@GenevieveBuckley
Created October 12, 2021 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GenevieveBuckley/9e09c5e035c9f0bc9b281955d25fdecd to your computer and use it in GitHub Desktop.
Save GenevieveBuckley/9e09c5e035c9f0bc9b281955d25fdecd to your computer and use it in GitHub Desktop.
Nuke and reinstall conda script
#!/bin/bash
# Fernando's nuke and reinstall conda script
# https://twitter.com/fperez_org/status/1447996737063317512
# Download and install miniconda
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O ~/Downloads/miniconda.sh
bash ~/Downloads/miniconda.sh -b -p $HOME/local/conda
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install --yes mamba
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment