Skip to content

Instantly share code, notes, and snippets.

@keckelt
Last active August 25, 2020 13:10
Show Gist options
  • Save keckelt/8a8a126d4a5d7f97b70179ffc6a7cfaf to your computer and use it in GitHub Desktop.
Save keckelt/8a8a126d4a5d7f97b70179ffc6a7cfaf to your computer and use it in GitHub Desktop.
Notebook Provenance Setup Instructions

Setup Jupyterlab Extension

Create workspace:

mkdir notebook_provenance
cd notebook_provenance/

Prepare conda enrivonment

# Create
conda create --name notebook_provenance python=3.8.5

# Enable
conda activate notebook_provenance

#Install requirements (jupyterlab)
conda install jupyterlab

Get Extension

 git clone -b release-test [email protected]:richardwolfmayr/jupyterlab_nbprovenance.git

Build Extension

npm install
npm run build

Install Extension

jupyter labextension link .
jupyter labextension install

Run Jupyter lab (use the conda environment from above)

jupyter lab --port=8889
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment