Skip to content

Instantly share code, notes, and snippets.

View saharctech's full-sized avatar

Sahar C saharctech

  • los angeles, CA
View GitHub Profile
@saharctech
saharctech / jupyter-notebook-miniconda.md
Last active September 26, 2021 18:37
installing and running jupyter notebooks on miniconda

Instructions on how to install and run jupyter notebook in miniconda

create a conda environment

conda create --name ENVIRONMENT-NAME

activate the environment

conda activate ENVIRONMENT-NAME

install the packages that you need.

conda install -c conda-forge PACKAGE_NAME_HERE

install jupyter notebook

conda install -c conda-forge jupyter

install ipykernel. This is required to enable jupyter notebook to use the environment