0.1.1 • Published 4 years ago

@swan-cern/swanhelp v0.1.1

Weekly downloads
1
License
BSD-3-Clause
Repository
github
Last release
4 years ago

SwanHelp

Help panel for SWAN

This extension is composed of a Python package named swanhelp, which installs the nbextension and a NPM package named @swan-cern/swanhelp for the JupyterLab extension.

Requirements

  • JupyterLab >= 2.0

Install

Note: You will need NodeJS to install the extension.

pip install swanhelp
jupyter nbextension install swanhelp --py
jupyter nbextension enable  swanhelp --py
jupyter lab build

Troubleshoot

If you are not seeing the frontend, check if it's installed:

jupyter labextension list

If it is installed, try:

jupyter lab clean
jupyter lab build

Contributing

Install

The jlpm command is JupyterLab's pinned version of yarn that is installed with JupyterLab. You may use yarn or npm in lieu of jlpm below.

# Clone the repo to your local environment
# Move to swanhelp directory

# Install server extension
# This will also build the js code
pip install -e .

# Install and enable the nbextension
jupyter nbextension install swanhelp --py --sys-prefix
jupyter nbextension enable  swanhelp --py --sys-prefix

# Link your development version of the extension with JupyterLab
jupyter labextension link .
# Rebuild JupyterLab after making any changes
jupyter lab build

# Rebuild Typescript source after making changes
jlpm build
# Rebuild JupyterLab after making any changes
jupyter lab build

You can watch the source directory and run JupyterLab in watch mode to watch for changes in the extension's source and automatically rebuild the extension and application.

# Watch the source directory in another terminal tab
jlpm watch
# Run jupyterlab in watch mode in one terminal tab
jupyter lab --watch

Uninstall

pip uninstall swanhelp
jupyter labextension uninstall @swan-cern/swanhelp