introvoyz041's picture
Migrated from GitHub
12d2e9e verified
raw
history blame contribute delete
359 Bytes
#!/bin/bash --login
# The --login ensures the bash configuration is loaded,
# enabling Conda.
# Enable strict mode.
set -euo pipefail
# Temporarily disable strict mode and activate conda:
set +euo pipefail
conda activate pathml
# Re-enable strict mode:
set -euo pipefail
# exec the final command:
exec jupyter lab --ip=0.0.0.0 --allow-root --no-browser