Skip to article frontmatterSkip to article content

Downgrade to Jupyter Book 1

If you need to return to Jupyter Book 1 (the Sphinx-based version), this guide will help you downgrade safely.

Why You Might Want to Downgrade

You may want to downgrade to Jupyter Book 1 if:

Downgrade Steps

First, uninstall the current version:

pip uninstall jupyter-book

Install the latest 1.x version:

pip install "jupyter-book<2.0"

Or install a specific 1.x version:

pip install jupyter-book==1.0.3

Finally, verify that you have the correct version:

jupyter-book --version

You should see a version number starting with 1. (e.g., 1.0.3).

Restore your content

If you’ve been working with Jupyter Book 2:

jupyter-book build path/to/book

Get Help

If you need assistance with downgrading or have questions about version compatibility:

Jupyter Book 1 Documentation

The documentation for Jupyter Book 1 is available at: https://jupyterbook.org/v1/

Considering an Upgrade Again?

If you later decide to upgrade to Jupyter Book 2, see our upgrade guide for detailed migration instructions.