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

Replace tabs with spaces in installation docs #621

Merged
merged 1 commit into from
Jan 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions nbgrader/docs/source/user_guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ serverextension`` commands.
To install and enable both frontend nbextensions (*assignment list* and
*create assignment*) run::

# The nbextensions are JavaScript/HTML/CSS so they require
# separate installation and enabling.
# The nbextensions are JavaScript/HTML/CSS so they require
# separate installation and enabling.
jupyter nbextension install --sys-prefix --py nbgrader
jupyter nbextension enable --sys-prefix --py nbgrader

To install the server extension for *assignment_list* run::

# The serverextension is a Python module inside nbgrader, so only an
# enable step is needed.
# The serverextension is a Python module inside nbgrader, so only an
# enable step is needed.
jupyter serverextension enable --sys-prefix --py nbgrader

To work properly, the *assignment list* extension requires both the
Expand Down Expand Up @@ -86,11 +86,11 @@ You may want to only install one of the nbgrader extensions. To do this, follow
the above steps to install everything and then disable the extension you don't
need using::

jupyter nbextension disable --sys-prefix assignment_list/main
jupyter nbextension disable --sys-prefix assignment_list/main

or::

jupyter nbextension disable --sys-prefix create_assignment/main
jupyter nbextension disable --sys-prefix create_assignment/main


For example lets assume you have installed nbgrader via `Anaconda
Expand All @@ -101,12 +101,12 @@ only want the *create assignment* extension available to a specific user and
not everyone else. First you will need to disable the *create assignment*
extension for everyone else::

jupyter nbextension disable --sys-prefix create_assignment/main
jupyter nbextension disable --sys-prefix create_assignment/main

Log in with the specific user and then enable the *create assignment* extension
only for that user::

jupyter nbextension enable --user create_assignment/main
jupyter nbextension enable --user create_assignment/main


Finally to see all installed nbextensions/serverextension, run::
Expand All @@ -117,8 +117,8 @@ Finally to see all installed nbextensions/serverextension, run::

For further documentation on these commands run::

jupyter nbextension --help-all
jupyter serverextension --help-all
jupyter nbextension --help-all
jupyter serverextension --help-all

For advanced instructions on installing the *assignment list* extension please
see the :ref:`advanced installation instructions<assignment-list-installation>`.
Expand Down