Ask Your Question
0

How to install jupyter nbextensions in jupyter notebooks 6.X.X?

asked 2023-05-26 11:13:48 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-05-26 11:37:02 +0000

ladyg gravatar image

To install jupyter nbextensions in jupyter notebooks 6.X.X, follow these steps:

  1. Open a terminal window.
  2. Create a new conda environment and activate it:
conda create -n myenv python=3.8
conda activate myenv
  1. Install Jupyter Notebook:
conda install jupyter
  1. Install jupyternbextensionsconfigurator:
conda install -c conda-forge jupyter_nbextensions_configurator
  1. Install nbextensions:
conda install -c conda-forge jupyter_contrib_nbextensions
  1. Enable nbextensions:
jupyter nbextensions_configurator enable --user
  1. Start Jupyter Notebook:
jupyter notebook
  1. Open a new notebook and go to the Nbextensions tab. From here, you can enable/disable nbextensions as needed.
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-26 11:13:48 +0000

Seen: 9 times

Last updated: May 26 '23