File size: 219 Bytes
987bbd9 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/bash
if [[ -x "/init.sh" ]]; then
/init.sh
fi
. "${DL_ANACONDA_HOME}/etc/profile.d/conda.sh"
if [[ "${ENABLE_MULTI_ENV,,}" == 'true' ]]; then
conda activate jupyterlab
else
conda activate base
fi
exec "$@"
|