Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
Holger Stitz edited this page Oct 1, 2018 · 2 revisions

Welcome to the JupyterLab Notebook Provenance wiki!

Development environment on Windows

Installation

  1. Create workspace directory
    cd jupyterlab
    
  2. Create virtual Python environment and install JupyterLab
    pip install virtualenv
    python -m venv venv
    .\venv\Scripts\activate.ps1
    pip install jupyterlab==0.34.12
    
  3. Clone extension and build
    git clone https://github.com/Caleydo/jupyterlab_nbprovenance.git
    cd jupyterlab_nbprovenance
    yarn install --frozen-lockfile
    yarn build
    
  4. Link extension into JupyterLab
    jupyter labextension link
    

Run

  • First PowerShell
    cd jupyterlab
    .\venv\Scripts\activate.ps1
    jupyter lab --port=8889 --watch --ip='*' --no-browser --allow-root --NotebookApp.token='' --NotebookApp.password=''
    
  • Second PowerShell:
    cd jupyterlab/jupyterlab_nbprovenance
    yarn watch
    

The browser should open with http://localhost:8889/lab

Clone this wiki locally