Skip to content
Commits on Source (2)
......@@ -38,6 +38,10 @@ if [ -n "${1}" ]; then
else
cd $PBS_O_WORKDIR
echo "host $(hostname)"
# ensure bashrc is sourced
if [ -f ~/.bashrc ]; then
. ~/.bashrc;
fi
conda activate base && \
jupyter lab --ip=$(hostname) --no-browser
# for conda versions below 4.6 use
......