Created
March 8, 2023 09:43
-
-
Save lambdaofgod/48653d9f92d7f677da8fc4b292bcedfa to your computer and use it in GitHub Desktop.
Run Jupyter lab/notebook in tmux
This file contains 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
# tmux utils | |
tmux_jupyter() { | |
cd ~/Projects | |
tmux new -d -s jupyter | |
tmux send-keys -t jupyter "jupyter-notebook" Enter | |
tmux a -t jupyter | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment