Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use --sys-prefix for installing nbextensions #265

Merged
merged 1 commit into from
Jan 31, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/howto/admin/enable-extensions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Enabling extensions via the command line

.. code-block:: bash

sudo -E jupyter contrib nbextension install --system
sudo -E jupyter contrib nbextension install --sys-prefix

#. Then, you will enable the extensions you would like to use. The syntax for this is
``jupyter nbextension enable`` followed by the path to the desired extension's main file.
Expand All @@ -43,7 +43,7 @@ Enabling extensions via the command line

.. code-block:: bash

sudo -E jupyter nbextension enable scratchpad/main --system
sudo -E jupyter nbextension enable scratchpad/main --sys-prefix

#. When this is completed, the enabled extension should be visible in the extension list:

Expand Down