I had the same issue. Just open the terminal and pip install jupyter
I had the same issue. Just open the terminal and pip install jupyter
I didn't manage to solve this, but I found a workaround
Go to PyCharm Settings and search for Jupyter Servers
Open a Terminal, and start Jupyter notebook, typically:
python3 -m notebookCopy the URL with the token to the Configured Server field in Pycharm, click OK
You should now be able to run and debug Jupyter cells in Pycharm!


ModuleNotFoundError: No module named notebook.notebookapp
python - Can't open jupyter notebook at all - Stack Overflow
Failed to start Jupyter in the environment
Jupyter Server Not Found (executable not in PATH)
Looks like you may be dealing with an error similar to this Github issue post: https://github.com/microsoft/azuredatastudio/issues/24436. Looks like the solution solved the error for multiple people.
Hope that helps
I got this error too. The solution is to update jupyter to the latest version (7.0.x).
Do:
conda update notebook
Edit:
https://github.com/jupyter/notebook/issues/7048#issuecomment-1724637960
https://github.com/jupyter/notebook/issues/7048#issuecomment-1720815902
pip install notebook==6.5.6
Or as @West commented, use:
pip install --upgrade --no-cache-dir notebook==6.*
Old Answer :
The Workaround: Uninstall the Recent Problematic Release (v5.10.0) and Install the Prior Version (v5.9.0).
Command Line:
pip uninstall traitlets
pip install traitlets==5.9.0
Git links:
https://github.com/microsoft/azuredatastudio/issues/24436#issuecomment-1723328100 https://github.com/jupyter/notebook/issues/7048
It turns out the problem is not with traitlets, but with notebook. Update that to a version that is newer than 6.5.6 will fix this problem:
https://github.com/jupyter/notebook/issues/7048#issuecomment-1724851639