.ipynb
file. Then, click Open. The notebook will appear in the left-hand menu.
ipykernel
is available from the main channel and the r-irkernel
is available from the R language channel.
numba
, dask
, or pytorch
). In other words, it’s a matter of running on the server or running locally in your browser.
anaconda-<YEAR>.<MONTH>-py<PYTHON_VERSION>
runtimes have a broad selection of packages, but you may have created a custom environment for your notebook. Separate environments are represented as “runtimes” in JupyterLab. You can view and switch between available runtimes by clicking the runtime name in the upper-right corner of the content pane.
List the packages available in an environment
If one of your imports is failing, start by verifying that the package is present in the runtime environment. You can view which packages are available in your current environment from the terminal by running conda list
.
To view packages in a specific environment, run conda list --name <ENV_NAME>
.
To see a list of available environments, run conda info --envs
. An asterisk appears beside your current active environment.
Create a custom runtime
If none of the Anaconda provided environments contain the package(s) you need, create a custom runtime for your notebook project.