Skip to content

Instantly share code, notes, and snippets.

View blessingchitra's full-sized avatar

Blessing Chitra blessingchitra

  • johannesburg, South Africa
View GitHub Profile
@blessingchitra
blessingchitra / install-conda.sh
Created March 18, 2021 06:04 — 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