Last active
December 13, 2021 18:24
-
-
Save niklasdewally/6a2edfdb33e456a826772a9280edd016 to your computer and use it in GitHub Desktop.
Script to launch Jupyter Lab in a default conda enviroment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # https://github.com/conda/conda/issues/7980 | |
| source $CONDA_BASE/etc/profile.d/conda.sh | |
| conda activate default | |
| nohup jupyter lab & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment