最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

python - Jupyter Notebook doesn't open - Stack Overflow

matteradmin4PV0评论

I'm super new into Python and I meet some problems with Jupyter Notebook openning. (normaly I learn with VS Code).

Here is an error:


\[E 2024-11-15 22:50:06.734 ServerApp\] Failed to write server-info to C:\\Users\\48608\\AppData\\Roaming\\jupyter\\runtime\\jpserver-4920.json: PermissionError(13, 'Permission denied')
Traceback (most recent call last):
File "C:\\Users\\48608\\anaconda3\\Scripts\\jupyter-notebook-script.py", line 10, in \<module\>
sys.exit(main())
^^^^^^
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\extension\\application.py", line 623, in launch_instance
serverapp.start()
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\serverapp.py", line 3119, in start
self.start_app()
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\serverapp.py", line 3023, in start_app
self.write_browser_open_files()
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\serverapp.py", line 2890, in write_browser_open_files
self.write_browser_open_file()
File "C:\\Users\\48608\\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\\48608\\AppData\\Roaming\\jupyter\\runtime\\jpserver-4920-open.html`

Is anyone able to help me with it? (I search through the forum but solution proposed for similar problems were to complex for me right now)

I'm super new into Python and I meet some problems with Jupyter Notebook openning. (normaly I learn with VS Code).

Here is an error:


\[E 2024-11-15 22:50:06.734 ServerApp\] Failed to write server-info to C:\\Users\\48608\\AppData\\Roaming\\jupyter\\runtime\\jpserver-4920.json: PermissionError(13, 'Permission denied')
Traceback (most recent call last):
File "C:\\Users\\48608\\anaconda3\\Scripts\\jupyter-notebook-script.py", line 10, in \<module\>
sys.exit(main())
^^^^^^
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\extension\\application.py", line 623, in launch_instance
serverapp.start()
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\serverapp.py", line 3119, in start
self.start_app()
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\serverapp.py", line 3023, in start_app
self.write_browser_open_files()
File "C:\\Users\\48608\\anaconda3\\Lib\\site-packages\\jupyter_server\\serverapp.py", line 2890, in write_browser_open_files
self.write_browser_open_file()
File "C:\\Users\\48608\\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\\48608\\AppData\\Roaming\\jupyter\\runtime\\jpserver-4920-open.html`

Is anyone able to help me with it? (I search through the forum but solution proposed for similar problems were to complex for me right now)

Share Improve this question asked Nov 16, 2024 at 8:16 Damian ChojnackiDamian Chojnacki 1
Add a comment  | 

1 Answer 1

Reset to default 0

Error message you are seeing indicates that Jupyter Notebook is unable to write to a specific file due to a "Permission Denied" error. This can happen for a few reasons, such as permission settings on your system or potential conflicts with other processes. Make sure you have appropriate permissions to write to the directory C:\Users\48608\AppData\Roaming\jupyter\runtime

Post a comment

comment list (0)

  1. No comments so far