Skip to content

Instantly share code, notes, and snippets.

@dataprofessor
Created May 26, 2021 06:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dataprofessor/d2e8d3112c434018a89732f1bc769a21 to your computer and use it in GitHub Desktop.
Save dataprofessor/d2e8d3112c434018a89732f1bc769a21 to your computer and use it in GitHub Desktop.
Installing conda on Google Colab
################################################################################
# INSTALL CONDA ON GOOGLE COLAB
################################################################################
! wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh
! chmod +x Miniconda3-py37_4.8.2-Linux-x86_64.sh
! bash ./Miniconda3-py37_4.8.2-Linux-x86_64.sh -b -f -p /usr/local
import sys
sys.path.append('/usr/local/lib/python3.7/site-packages/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment