Skip to content

Instantly share code, notes, and snippets.

View shifwang's full-sized avatar
🏸

Hue shifwang

🏸
  • UC Berkeley
View GitHub Profile
@shifwang
shifwang / install-conda.sh
Created January 29, 2019 08:28 — forked from arose13/install-conda.sh
Install Miniconda in Ubuntu
# Setup Ubuntu
sudo apt update --yes
sudo apt upgrade --yes
# Get Miniconda and make it the main Python interpreter
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p ~/miniconda
rm ~/miniconda.sh