Created for
Created by
In next labs we are going to use jupyterlab, so you can skip this section
pipenv install jupyter
conda install -c conda-forge jupyterlab
pip install jupyterlab
pipenv install jupyterlab
cd /your/project/folder
# activate the virtual environment:
pipenv shell
# start the Jupyter server:
jupyter notebook
# in case of problems: start the Jupyter server with a clean config:
jupyter notebook --generate-config
Shutdown this notebook server (y/[n])? y
http(s)://<server:port>/<lab-location>/lab
http(s)://<server:port>/<lab-location>/lab/workspaces/foo
# add your changes to the stage:
$ git add -A
# commit those changes:
$ git commit -m'__Describe your changes here__'
# push the branch (assuming "master" below)to your GitHub repo:
$ git push origin master
.ipynb
extension) github will try to render the notebook in your browseThe preferred way
https://mybinder.org/v2/<provider-name>/<org-name>
/<repo-name>/<branch|commit|tag>?
filepath=<path/to/notebook.ipynb>
pathname
is relative to your github repo folderThese slides are based on
customised version of
framework