Log in to JupyterHub

  1. Navigate to your Jupyter URL and click Sign in with Anaconda Cloud.
  2. Enter your Anaconda.com credentials and click Log In.
  3. If necessary, select Start my server to launch Jupyter.
    If you are already logged into anaconda.com/app, selecting Sign in with Anaconda Cloud signs you in automatically.

Create an environment

Before you begin working in a notebook, create an environment to work out of. To learn the basics of working with conda environments, see Environments.
If you do not create an environment before you attempt to download packages, an error occurs. This protects the base /opt/jupyterhub environment.
If you want your environment to be shown as a tile on the JupyterLab launch page, include the ipykernel package in your environment:
Example
# Replace <VERSION> with your desired version of python
conda create --name custom_env ipykernel python=<VERSION>

JupyterLab

New to JupyterLab? View the official JupyterLab documentation here.