Jupyter Notebook is not launching from Anaconda Navigator on Win 11 Pro

Got an issue with lanching Jupyter Notebook (last edition) from Anaconda Navigator (last edition) on Win 11 Pro laptop. I tried previous editions of both programs and there is no difference.

But on Win 10 Pro laptop it’s all right and everything is being launched without any problem.
What can be the issue?

Have you been able to successfully launch it from the Anaconda Prompt on the Win11 Pro laptop? (jupyter notebook) ?
What error message / issue do you see in the Anaconda Prompt window ?

Hello! Thq for quick response. The error msg is as follows:
[W 2025-03-05 16:27:17.210 ServerApp] A _jupyter_server_extension_points function was not found in jupyter_lsp. Instead, a _jupyter_server_extension_paths function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server.
[W 2025-03-05 16:27:17.495 ServerApp] A _jupyter_server_extension_points function was not found in notebook_shim. Instead, a _jupyter_server_extension_paths function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server.
[I 2025-03-05 16:27:18.884 ServerApp] Extension package panel.io.jupyter_server_extension took 1.3732s to import
[I 2025-03-05 16:27:18.887 ServerApp] jupyter_lsp | extension was successfully linked.
[I 2025-03-05 16:27:18.894 ServerApp] jupyter_server_terminals | extension was successfully linked.
[I 2025-03-05 16:27:18.902 ServerApp] jupyterlab | extension was successfully linked.
[I 2025-03-05 16:27:18.908 ServerApp] notebook | extension was successfully linked.
[I 2025-03-05 16:27:19.367 ServerApp] notebook_shim | extension was successfully linked.
[I 2025-03-05 16:27:19.367 ServerApp] panel.io.jupyter_server_extension | extension was successfully linked.
[I 2025-03-05 16:27:19.440 ServerApp] notebook_shim | extension was successfully loaded.
[I 2025-03-05 16:27:19.440 ServerApp] jupyter_lsp | extension was successfully loaded.
[I 2025-03-05 16:27:19.440 ServerApp] jupyter_server_terminals | extension was successfully loaded.
[I 2025-03-05 16:27:19.440 LabApp] JupyterLab extension loaded from C:\ProgramData\anaconda3\Lib\site-packages\jupyterlab
[I 2025-03-05 16:27:19.440 LabApp] JupyterLab application directory is C:\ProgramData\anaconda3\share\jupyter\lab
[I 2025-03-05 16:27:19.440 LabApp] Extension Manager is ‘pypi’.
[I 2025-03-05 16:27:19.980 ServerApp] jupyterlab | extension was successfully loaded.
[I 2025-03-05 16:27:19.980 ServerApp] notebook | extension was successfully loaded.
[I 2025-03-05 16:27:19.980 ServerApp] panel.io.jupyter_server_extension | extension was successfully loaded.
[I 2025-03-05 16:27:19.980 ServerApp] Serving notebooks from local directory: C:\Users\Admin
[I 2025-03-05 16:27:19.980 ServerApp] Jupyter Server 2.14.1 is running at:
[I 2025-03-05 16:27:19.980 ServerApp] http://localhost:8888/tree?token=7cf4005f46219b6c95d5ee238298b58e8a5cc23f9ffa5a81
[I 2025-03-05 16:27:19.980 ServerApp] http://127.0.0.1:8888/tree?token=7cf4005f46219b6c95d5ee238298b58e8a5cc23f9ffa5a81
[I 2025-03-05 16:27:19.980 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[E 2025-03-05 16:27:19.980 ServerApp] Failed to write server-info to C:\Users\Admin\AppData\Roaming\jupyter\runtime\jpserver-8992.json: PermissionError(13, ‘Permission denied’)
Traceback (most recent call last):
File “C:\ProgramData\anaconda3\Scripts\jupyter-notebook-script.py”, line 10, in
sys.exit(main())
^^^^^^
File “C:\ProgramData\anaconda3\Lib\site-packages\jupyter_server\extension\application.py”, line 623, in launch_instance
serverapp.start()
File “C:\ProgramData\anaconda3\Lib\site-packages\jupyter_server\serverapp.py”, line 3119, in start
self.start_app()
File “C:\ProgramData\anaconda3\Lib\site-packages\jupyter_server\serverapp.py”, line 3023, in start_app
self.write_browser_open_files()
File “C:\ProgramData\anaconda3\Lib\site-packages\jupyter_server\serverapp.py”, line 2890, in write_browser_open_files
self.write_browser_open_file()
File “C:\ProgramData\anaconda3\Lib\site-packages\jupyter_server\serverapp.py”, line 2913, in write_browser_open_file
with open(self.browser_open_file, “w”, encoding=“utf-8”) as f:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
PermissionError: [Errno 13] Permission denied: ‘C:\Users\Admin\AppData\Roaming\jupyter\runtime\jpserver-8992-open.html’

Hello again!
From Anaconda Prompt even using admin permissions the address line shows:
file:///C:/Users/Admin/AppData/Roaming/jupyter/runtime/jpserver-2480-open.html
and ERR_FILE_NOT_FOUND in the window.

It is a common issue with Windows 11 to have permissions issues causing trouble with Jupyter. Often if you give administrator permissions to the Jupyter runtime folder that addresses the issue.
This thread on the Jupyter notebook tracker has some more specific steps on how you might do that.

Thq very much for the thread (I can’t launch Jupyter notebook (PermissionError: [Errno 13] Permission denied) · Issue #7421 · jupyter/notebook · GitHub), my friend! It worked when I just chked permissions of the certain folder.
Hv a nice day.

1 Like