This document covers the frequently asked questions for the EOSC EU Node Interactive Notebooks Service. In case you seek enlightenment on a specific term used in the context of interactive notebooks, you may also try consulting our Glossary.
Table of Contents maxLevel 1
...
If you want to have a completely customised environment for your Notebooks that persists across sessions, you can create your own conda environment in your home directory. Thanks to the nb_conda_kernels
plugin these will show up automatically as an option to start notebooks with by following these steps:
- Create a
$HOME/.condarc
file specifying where your environments will be created, e.g. in/home/jovyan/conda-envs/
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
env_dirs: - /home/jovyan/conda-envs/ |
- Create your environments as needed, make sure to install a kernel (`ipykernel`) for it to show automatically:
...
conda
...
create
...
-p
...
/home/jovyan/conda-envs/myenv
...
ipykernel
...
scipy
- Then the environment will show up in the launcher as a new option
Can I request library X to be installed permanently?
...