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

Re-add the custom widget tutorial #3611

Merged
merged 4 commits into from Nov 8, 2022
Merged
Show file tree
Hide file tree
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
15 changes: 2 additions & 13 deletions docs/source/examples/Widget Custom.ipynb
Expand Up @@ -53,7 +53,7 @@
"To create the environment, execute the following command:\n",
"\n",
"```bash\n",
"conda create -n ipyemail -c conda-forge jupyterlab jupyter-packaging cookiecutter nodejs yarn python\n",
"conda create -n ipyemail -c conda-forge jupyterlab cookiecutter nodejs yarn python\n",
"```\n",
"\n",
"Then activate the environment with:\n",
Expand Down Expand Up @@ -127,7 +127,7 @@
"# link your development version of the extension with JupyterLab\n",
"jupyter labextension develop . --overwrite\n",
"\n",
"# rebuild extension Typescript source after making changes\n",
"# rebuild extension TypeScript source after making changes\n",
"yarn run build\n",
"```\n",
"\n",
Expand All @@ -138,17 +138,6 @@
"yarn run watch\n",
"```\n",
"\n",
"\n",
"If you are using JupyterLab 2.x, you will need to install the `@jupyter-widgets/jupyterlab-manager` extension manually:\n",
"\n",
"```bash\n",
"# install the widget manager to display the widgets in JupyterLab\n",
"jupyter labextension install @jupyter-widgets/jupyterlab-manager --no-build\n",
"\n",
"# install the local extension\n",
"jupyter labextension install .\n",
"```\n",
"\n",
"If you are using the Classic Notebook:\n",
"\n",
"```bash\n",
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Expand Up @@ -111,6 +111,7 @@ some custom widget packages built on top of the Jupyter Widgets framework.
examples/Using Interact.ipynb
examples/Widget Low Level.ipynb
examples/Widget Asynchronous.ipynb
examples/Widget Custom.ipynb
embedding.md

.. toctree::
Expand Down