Skip to content

Instantly share code, notes, and snippets.

@saharctech
Last active September 26, 2021 18:37
Show Gist options
  • Save saharctech/8e686dd04d2a490894837e182be769de to your computer and use it in GitHub Desktop.
Save saharctech/8e686dd04d2a490894837e182be769de to your computer and use it in GitHub Desktop.
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

conda install -c miniconda ipykernel

add the environment to the kernel in jupyter notebook

python -m ipykernel install —user —name=ENVIRONMENT-NAME

run jupyter notebook

jupyter notebook

Keywords: How to run jupyter notebook using miniconda

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment