Skip to content

Commit

Permalink
Update jlab dev install instructions (#243)
Browse files Browse the repository at this point in the history
* fix grammar

* update dev install instructions for jlab
  • Loading branch information
ianhi authored Jul 15, 2020
1 parent 6b44a6f commit 7db6dd2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ python -c "import sys; print('\n',sys.version); import ipympl; print('ipympl ver
```
-->
```
Paste here the command output.
Paste the command output here.
```
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,18 @@ jupyter nbextension enable --py --sys-prefix ipympl

# If using JupyterLab
jupyter labextension install @jupyter-widgets/jupyterlab-manager --no-build
jupyter labextension link ./js
cd js && npm run watch
# Launch jupyterlab as `jupyter lab --watch` in another terminal
jupyter labextension install ./js
```

#### How to see your changes
**Javascript**:

To continuously monitor the project for changes and automatically trigger a rebuild, start Jupyter in watch mode:

jupyter lab --watch

After a change wait for the build to finish and then refresh your browser and the changes should take effect.

**Python:**

If you make a change to the python code then you will need to restart the notebook kernel to have it take effect.

0 comments on commit 7db6dd2

Please sign in to comment.