python3 -m venv <myEnv>
source <myEnv>/bin/activate
pip install -U pip
pip install <mypackage>
pip install ipykernel
python3 -m ipykernel install --user --name=<myKernel>
Load the miniconda module by clicking first on the blue hexagon icon on the left-hand side of Jupyter's start page and then on the "load" Button right of the entry for miniconda in the software module menu:
Open a terminal and complete the miniconda setup with:
source $MINICONDA_HOME/etc/profile.d/conda.sh
Ceate a conda environment:
conda create --name <myenv>
Activate your environment:
conda activate <myenv>
Install your packages:
conda install <mypackage>
Install the ipykernel package:
conda install ipykernel
Register your virtual environment as custom kernel to Jupyter:
python3 -m ipykernel install --user --name=<myKernel>
conda create --name <myenv> python=<python version>
conda install ipykernel
python3 -m ipykernel install --user --name=<myKernel>
$ module load math/R
$ R
> install.packages('IRkernel')
$ R
> IRkernel::installspec(displayname = 'R 4.2')
Question: My conda commands are interrupted with message 'Killed'. What can I do?
Answer: Request more memory when starting Jupyter. In the job settings open 'Cluster Settings' and look for the option 'Memory / node'.
Question: How can I navigate to my SDS@hd folder in the file browser?
Answer: Open a terminal and set a symbolic link to your SDS@hd folder in your home directory. For example:
$ cd $HOME
$ mkdir sds-hd
$ cd sds-hd
$ ln -s /mnt/sds-hd/sd16a001 sd16a001