What is Jupyter?
Jupyter is an open-source tool that provides an interactive computing environment, enabling users to create and share documents containing live code, equations, visualizations, and narrative text. Jupyter notebooks are especially popular in data science, machine learning, and scientific computing because they combine code and results in a single, user-friendly interface.
Quick Jobs with Jupyter
You can connect to the HPC Jupyter Domain here:
https://jupyter.storrs.hpc.uconn.edu
Log in with your NetIDand password:
Select from the following quick options for time limit and memory allocation:
Custom Conda Environments in Jupyter
For information on how to create custom conda enviroments, please visit our guide:
Miniconda Environment Set Up - Storrs HPC - UConn Knowledge Base
Begin by activating/creating your desired environment:
conda create -n myenv
conda activate myenv
Once you are in the enirvonment, install ipykernel
with the following command:
conda install ipykernel
Add the environment to your jupyter kernels:
python -m ipykernel install --user --name=myenv --display-name "myenv"
Follow the previous instructions to launch jupyter. You should now be able to select the environment we just added: