Using a Conda environment in Jupyter

From Research Computing Center Wiki
Revision as of 10:37, 12 December 2023 by Chelsea (talk | contribs) (Created page with "== Conda environment == A Conda environment is a type of virtual environment. Conda environments are used to contain a set of software that you install (via Conda) into that e...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Conda environment

A Conda environment is a type of virtual environment. Conda environments are used to contain a set of software that you install (via Conda) into that environment (which is at a specific directory) that may be accessed any time you activate the environment. To learn more about Conda environments, please see https://wiki.gacrc.uga.edu/wiki/Installing_Applications_on_Sapelo2#How_to_install_Conda_packages

Open OnDemand

Open OnDemand is a web-based service that allows users to run software with a graphical user interface (GUI). Please see our wiki page on Open OnDemand to learn more.

Using a Conda environment in Jupyter

These steps will allow you to access the software you install into a Conda environment within Jupyter Notebook running on Open OnDemand

Create the Conda environment

Create your Conda environment and install any packages you will want to use.

Install ipykernel

While your Conda environment is still activated, install ipykernel to your Conda environment with:

conda install ipykernel
python -m ipykernel install --user --name=my_env

Note: change my_env to whatever the name of your Conda environment is.