-
Notifications
You must be signed in to change notification settings - Fork 0
Jupyter Notebook Lab Workflow
Christopher Aicher edited this page Feb 4, 2020
·
3 revisions
- Install with conda
- Install Jupyter Notebook/Lab Extensions
- jupyter toc extension
- jupytext extension
- jupyterlab vim bindings
- jupyterlab celltags
Install nb_conda
extension to add conda environment to kernels.
See IPython Kernel Install Documentation.
Essentially, the conda environment needs ipykernel
installed and to call
source activate <myenv>
python -m ipykernel install --user --name <myenv> --display-name "Python [<myenv>]"
where <myenv>
should be replaced with the Conda environment name.
Use jupytext
extension
To access jupyter notebooks on a remote machine follow the instructions here.
Install extensions https://github.com/ipython-contrib/jupyter_contrib_nbextensions
- jupyter-vim bindings
To format the output of the notebook
With an SSH connection, we can connect to a Jupyter Notebook or Lab running on a remote server. This consists of three steps:
- SSH to
remote
and run jupyter with the--no-browser
option
ssh <user_name>@<remote>
jupyter lab --no-browser --port=8889
- Open a SSH tunnel to
remote
for the specified port number
ssh -N -L localhost:8889:localhost:8889 <user_name>@<remote>
- Open up
localhost:8889
in the browser of your choice. Or copy the URL in the terminal from step 1.
Develop Notebook in notebook/develop
folder with file names of the form [Date]-[2-4 word description]
.
Final Notebooks in notebook/publish
folder for final analysis