Fixing Jupyter: ERR_ACCESS_DENIED error using Chromium on Ubuntu

A simple two-step fix to a problem that was driving me crazy

Harald Carlens
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*:

  1. Generate a jupyter config file: jupyter notebook --generate-config
  2. 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

--

--