Fixing Jupyter: ERR_ACCESS_DENIED error using Chromium on Ubuntu
A simple two-step fix to a problem that was driving me crazy
Oct 19, 2020
This story was originally published at http://harald.co on October 19, 2020.
I just discovered how to fix a really annoying issue with Jupyter on Ubuntu I’ve had for a while. Whenever I run jupyter notebook
, instead of my browser opening right to the notebook page, I would get this:
Then I’d have to go back into the terminal, and click the link there.
Here’s an easy fix*:
- Generate a jupyter config file:
jupyter notebook --generate-config
- Set
c.NotebookApp.use_redirect_file = False
And you’re done! Next time you run jupyter notebook
, it should open in your browser without any issues:
*credit for this goes to kosii on StackOverflow