Cannot open new Jupyter Notebook [Permission Denied]

UbuntuJupyter Notebook

Ubuntu Problem Overview


I have installed Jupyter Notebook on ubuntu 16.04 using pip3. I can execute jupyter notebook command. It opens and shows a list of current path directories.

But I cannot create a new notebook(Python3). It says

> Unexpected error while saving file: Deep Learning/NN/Untitled.ipynb [Errno 13] Permission denied: '/home/ubuntu/.local/share/jupyter/notebook_secret'

Ubuntu Solutions


Solution 1 - Ubuntu

change the ownership of the ~/.local/share/jupyter directory from root to user.

sudo chown -R user:user ~/.local/share/jupyter 

see here: https://github.com/ipython/ipython/issues/8997

The first user before the colon is your username, the second user after the colon is your group. If you get chown: [user]: illegal group name, find your group with groups, or specify no group with sudo chown user: ~/.local/share/jupyter.

EDIT: Added -R option in comments to the answer. You have to change ownership of all files inside this directory (or inside ~/.jupyter/, wherever it gives you PermissionError) to your user to make it work.

Solution 2 - Ubuntu

In my opinion, it is a good practice to run Jupyter in a dedicated workbook folder.

$ mkdir jupyter_folder
$ jupyter-notebook --notebook-dir jupyter_folder

where 'jupyter_folder' is a folder in my home.

This method works without any permission issues.

Solution 3 - Ubuntu

Tried everything that was suggested but finally this helped me:

sudo jupyter notebook --allow-root

In my case, it didn't start the browser by itself. So just copy the link from terminal and open it by yourself.

Update: Change folder(.local) permissions by this command:

sudo chmod -R 777 .local

Solution 4 - Ubuntu

On Ubuntu, 'permission denied' may appear when browser is installed as a 'snap'. I had this problem. I edited config file to open a regular browser and it worked.

https://stackoverflow.com/questions/35229604/how-to-change-the-default-browser-used-by-the-ipython-jupyter-notebook-in-linux

Solution 5 - Ubuntu

The top answer here didn't quite fix the problem, although it's probably a necessary step:

sudo chown -R user:user ~/.local/share/jupyter 

(user should be whoever is the logged in user running the notebook server) This changes the folder owner to the user running the server, giving it full access.

After doing this, the error message said it didn't have permission to create the checkpoint file in ~/.ipynb_checkpoints/ so I also changed ownership of that folder (which was previously root)

sudo chown -R user:user ~/.ipynb_checkpoints/

And then I was able to create and save a notebook!

Solution 6 - Ubuntu

  1. Open Anaconda prompt
  2. Go to C:\Users\your_name
  3. Write jupyter trust untitled.ipynb
  4. Then, write jupyter notebook

Solution 7 - Ubuntu

It might be a trust issue.
Command-line
jupyter trust /path/to/notebook.ipynb
here is the documentation link :
http://jupyter-notebook.readthedocs.io/en/latest/security.html#security-in-notebook-documents

Solution 8 - Ubuntu

I had the very same issue running Jupyter. After chasing my tail on permissions, I found that everything cleared up after I changed ownership on the directory where I was trying to run/store my notebooks. Ex.: I was running my files out of my ~/bash dir. That was root:root; when I changed it to jim:jim....no more errors.

Solution 9 - Ubuntu

Seems like the problem is in the last release, so

pip install notebook==5.6.0

must solve the problem!

Solution 10 - Ubuntu

Try running "~/anaconda3/bin/jupyter notebook" instead of "jupyter notebook". This resolved the problem for me. No more getting 'permission denied' error.

Solution 11 - Ubuntu

  1. Create a configuration file: jupyter notebook --generate-config.
  2. Edit a configuration file: sudo gedit /home/<USERNAME>/.jupyter/jupyter_notebook_config.py (You can use vim, nano or anything else instead of gedit)
  3. Uncomment a line and change the default value:

BEFORE: # c.NotebookApp.use_redirect_file = True

AFTER: c.NotebookApp.use_redirect_file = False

Solution 12 - Ubuntu

This worked for me:

-> uninstalled Jupyter
-> install jupyter in Python36 folder
-> open Jupyter from command prompt instead of git bash.

Solution 13 - Ubuntu

I had to run chown recursively for all subfolders With /* . Than it worked:

sudo chown -R user:usergroup /home/user/.local/share/jupyter/*

Solution 14 - Ubuntu

You don't have to install or uninstall anything. if you are using python 2 use pip to install and upgrade. But if you want to use python3 then follow the steps below:

sudo apt-get install python3-pip python3-dev

#then in terminal use this

pip3 install -U jupyter

#final step is to launch jupyter notebook so,in terminal just type

jupyter notebook

all the issues or problems of premissions etc will be resolved.

Solution 15 - Ubuntu

I had the same issue and it turned out my windows password had changed since I shared my drive with docker.

The fix was to rest my credentials in docker settings -> shared drives -> reset credentials and then reshare my drive.

docker reset credentials

Solution 16 - Ubuntu

Executing the script below worked for me.

sudo chown $USER /home/$USER/.jupyter

Solution 17 - Ubuntu

I encountered same problem when I installed latest version of anaconda navigator 64 bit on windows 10.

I got to know that INSTALLING 32 BIT VERSION ON WINDOWS 10 will solve the issue. It worked for me. Jupyter is running smoothly now.

Solution 18 - Ubuntu

In windows, I copied, what I think is a snapshot:

.~SomeAmazingNotebook.ipynb

renamed it:

SomeAmazingNotebook.ipynb

and could open it.

Solution 19 - Ubuntu

None of the above worked for me but the below did:

sudo chown -R user: /Library/Frameworks/Python.framework/Versions/3.9/share/jupyter/

Where user is your username.

Solution 20 - Ubuntu

I was launching it from the root dir "/" for which I was lacking the write permission and hence file creation failed as below

Unexpected error while saving file: Untitled.ipynb [Errno 30] Read-only file system: '/Untitled.ipynb'

Once after I re-launched it from other dir , I was able to proceed.

Solution 21 - Ubuntu

I tried opening from the Python folder and it helped.

C:\Users\Julia>appdata\local\programs\python\python39\python.exe -m jupyter notebook

Solution 22 - Ubuntu

Try creating the notebook in the /home/ubuntu folder

Solution 23 - Ubuntu

I closed notebook page and:

  1. I killed notebook kernel, since I was using DockerSpawner I needed to delete notebook's container
  2. I deleted user jupyter directory by running rm -rf ~/.local/share/jupyter

When I tried to create new notebook next time, it started working

Solution 24 - Ubuntu

A complicated problem this one.. but finally I found a solution.

You need to generate a config file:

jupyter notebook --generate-config

Its created in the .jupyter directory. If its hidden, do a CTRL+H to unhide the files. Look for c.NotebookApp.use_redirect_file and make it like this:

c.NotebookApp.use_redirect_file = False.

Make sure to remove the # before the line. Otherwise it won't work. Done! :)

Solution 25 - Ubuntu

I solved the problem by changing the owner of my current folder. Whenever we type jupyter notebook on terminal, it always opens up in the current path (which we are pointing to via terminal), so we just have to change the owner to current user and then if you click on "new notebook", it will create one for you without giving permission denied error.

Solution 26 - Ubuntu

My os is Ubuntu 22.04 LTS. When I use Chrome, which was downloaded from official site. I solved this problem. Perhaps this is because Firefox and chromium on Ubuntu are base on Snap.

Solution 27 - Ubuntu

  • List item
  • List item

this problem of not able to open jupyter notebook is like Corona virus.I came across several complaints-including my own.I use windows 10.

Atlast after struggling for 3 days i came across this wonderful foolproof solution:-

1.The jupyter folder is created at path:- C:\Users\deviv_000\AppData\Roaming\jupyter your name will replace->deviv_000

2.Go to cmd and write : cd C:\Users\deviv_000\AppData\Roaming\jupyter this will take cmd to that folder.

3.Now create manually a file as untitled.ipynb in jupyter folder.

4.Come back to cmd and write: jupyter trust untitled.ipynb

5.After cmd performs this operation now write:-
jupyter notebook

SUCCESS!!- your notebook will appear in the next tab.I used chrome.

Regards

Solution 28 - Ubuntu

An easy way is to run your terminal in the mode of "Administrator"

Solution 29 - Ubuntu

On a Windows machine run the python command prompt as administrator. That should resolved the permissions issue when creating a new python 3 notebook.

Solution 30 - Ubuntu

Based on my experience on Ubuntu 18.04:

1. Check Jupyter installation

first of all make sure that you have installed and/or upgraded Jupyter-notebook (also for virtual-environment):

pip install --upgrade jupyter 

2. Change the Access Permissions (Use with Caution!)

then try to change the access permission for you

sudo chmod -R 777 ~/.local

where 777 is a three-digit representation of the access permission. In sense that each of the digits representing short format of the binary one (e.g. 7 for 111). So, 777 means that we set permission access to read, write and execute to 1 for all users (Owner, Group or Other)

Example.1

777 : 111 111 111

or

777 : rwx-rwx-rwx

Example.2

755 : 111 101 101

  • Owner: rwx=4+2+1=7
  • Group: r-x=4+0+1=5
  • Other: r-x=4+0+1=5

(More about chmod : File Permissions and attributes)

3. Run jupyter

afterwards run your jupyter notebook:

jupyter-notebook

Note: (These steps also solve your Visual-Studio code (VS-Code) problems regarding permissions while using ipython and jupyter for python-interactive-console.)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCodeNinja101View Question on Stackoverflow
Solution 1 - UbuntuGanesh PandeyView Answer on Stackoverflow
Solution 2 - UbuntuZompaView Answer on Stackoverflow
Solution 3 - UbuntuShweta ChandelView Answer on Stackoverflow
Solution 4 - UbuntuKrystianView Answer on Stackoverflow
Solution 5 - UbuntuBryan BlackfordView Answer on Stackoverflow
Solution 6 - UbuntuShubham AgrawalView Answer on Stackoverflow
Solution 7 - UbuntuShaneCalderView Answer on Stackoverflow
Solution 8 - UbuntuJimH23View Answer on Stackoverflow
Solution 9 - UbuntuZarrieView Answer on Stackoverflow
Solution 10 - UbuntuemeralddoveView Answer on Stackoverflow
Solution 11 - UbuntuIdan HazanView Answer on Stackoverflow
Solution 12 - UbuntuNimitaView Answer on Stackoverflow
Solution 13 - UbuntuHrvojeView Answer on Stackoverflow
Solution 14 - UbuntuAbdullah AkhtarView Answer on Stackoverflow
Solution 15 - UbuntuRich HildebrandView Answer on Stackoverflow
Solution 16 - UbuntuMT_ShikombaView Answer on Stackoverflow
Solution 17 - UbuntuShweta TomarView Answer on Stackoverflow
Solution 18 - Ubuntucs0815View Answer on Stackoverflow
Solution 19 - UbuntuJesse MurrellView Answer on Stackoverflow
Solution 20 - UbuntuSubra MView Answer on Stackoverflow
Solution 21 - UbuntuJuliaView Answer on Stackoverflow
Solution 22 - UbuntuJoão RaffsView Answer on Stackoverflow
Solution 23 - Ubuntu32cupoView Answer on Stackoverflow
Solution 24 - UbuntuAtharv NuthiView Answer on Stackoverflow
Solution 25 - UbuntuASHUTOSHView Answer on Stackoverflow
Solution 26 - Ubuntu杨树浩View Answer on Stackoverflow
Solution 27 - Ubuntuuser1744515View Answer on Stackoverflow
Solution 28 - UbuntuZIZI_noobView Answer on Stackoverflow
Solution 29 - UbuntuBeanwahView Answer on Stackoverflow
Solution 30 - UbuntuBehzad SezariView Answer on Stackoverflow