extension-examples icon indicating copy to clipboard operation
extension-examples copied to clipboard

Perhaps add clarification on the distinction between "python -m pip install -e ." and "jupyter labextension develop . --overwrite"

Open adpatter opened this issue 4 years ago • 0 comments

It might be constructive to explain the distinction in the effects of pip install -e . and jupyter labextension develop . --overwrite.

# install the extension in editable mode
python -m pip install -e .

# install your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite

adpatter avatar Feb 01 '21 13:02 adpatter