Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

There is no need to use a custom Jupyter environment here. A custom kernel can be selected later if required.

...

.

image-20241113-184558.pngImage Added

Accessing Shared Storage

Due to limitations from jupyter the file browser and initial working directory are limited to the users home directory.

There are several methods to access shared storage.
Within a Notebook:

Code Block
import os
os.chdir('/shared')
os.chdir('/scratch')

or

%cd /shared
%cd /scratch

In the File Browser:
Create a symlink in the users home directory.

Code Block
ln -s /path/to/directory <directoryName>

e.g.
ln -s /shared/ ~/shared

Custom Environments

If you require a non-default python environment we provide setup examples here: custom environments.