Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sofiane Bendoukha
ssh_scripts
Commits
e328eee6
Commit
e328eee6
authored
Jun 08, 2020
by
Mathis Rosenhauer
Browse files
start-jupyter: load python3/unstable module if no include file is given
parent
35560ae0
Changes
1
Hide whitespace changes
Inline
Side-by-side
start-jupyter
View file @
e328eee6
#!/bin/bash
#
# Copyright 20
19
Deutsches Klimarechenzentrum GmbH
# Copyright 20
20
Deutsches Klimarechenzentrum GmbH
#
# All rights reserved.
#
...
...
@@ -37,7 +37,7 @@
# DKRZ's mistral nodes. The script then opens a ssh tunnel to connect
# your local browser to jupyter.
#
# If you indicate an account with the -A
switch
, the script will run
# If you indicate an account with the -A
option
, the script will run
# jupyter in a job on dedicated resources. Otherwise jupyter uses a
# shared interactive node.
#
...
...
@@ -83,7 +83,8 @@ SJ_PARTITION=shared
#
# If indicated, this file will be sourced prior to running jupyter
# notebook. It has to be located on mistral. Set up the environment
# for starting the correct jupyter here.
# for starting the correct jupyter here. If no SJ_INCFILE is given,
# the module python3/unstable is loaded.
SJ_INCFILE
=
""
# Frontend host
...
...
@@ -194,6 +195,8 @@ function source_incfile() {
incfile
=
"
\$
{HOME}/
${
incfile
}
"
fi
commandline
=
"source
${
incfile
}
;
${
commandline
}
"
else
commandline
=
"module load python3/unstable;
${
commandline
}
"
fi
echo
"
${
commandline
}
"
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment