Browse Source

Mention jupyter-packaging and cookiecutter in migration guide

Jeremy Tuloup 4 years ago
parent
commit
2a2661d0ef
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/source/developer/extension_migration_2_3.rst

+ 3 - 2
docs/source/developer/extension_migration_2_3.rst

@@ -25,18 +25,19 @@ Upgrading library versions using the upgrade script
 
 JupyterLab 3.0 provides a script to upgrade an existing extension to use the new extension system and packaging.
 
-First, make sure to update to JupyterLab 3.0 with ``pip``:
+First, make sure to update to JupyterLab 3.0 and install ``jupyter-packaging`` and ``cookiecutter``. With ``pip``:
 
 .. code:: bash
 
    pip install jupyterlab -U
+   pip install jupyter_packaging cookiecutter
 
 
 Or with ``conda``:
 
 .. code:: bash
 
-   conda install -c conda-forge jupyterlab=3
+   conda install -c conda-forge jupyterlab=3 jupyter-packaging cookiecutter
 
 
 Then at the root folder of the extension, run: