Skip to content

nonjosh/colab-conda-env

Repository files navigation

Exported conda/pip list from Google Colab

Tensorflow 1.15.0 and 2.0.0 available. (both GPU version)

The folder `colab/` contains `requirement.txt` export by running `pip freeze > requirements.txt` in Colab.

Import

# conda
conda env create -f environment.yml

# pip
pip install -r requirements.txt

Export

# conda
conda env export > environment.yml

# pip
pip freeze > requirements.txt

Run local jupyter server for colab

Replace env name and token with your own ones. You may create a batch file for it also.

conda activate <ENV_NAME> && jupyter notebook --NotebookApp.allow_origin='https://colab.research.google.com' --port=8888 --NotebookApp.token=<TOKEN> --NotebookApp.port_retries=0 --no-browser

About

Exported conda/pip list from Google Colab

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published