1

I have install miniconda and jupyter on windows through wsl. Although the server starts, i am unable to open the same in the browser. Thus i cannot access the started jupyter notebook.

Attaching the screenshots for the same. Successful server started

Unable to open in browser

I tried opening the notebook from the runtime .html file, using "localhost" or "127.0.0.1". I also tried running the notebook using the command "jupyter-notebook" whose alias i defined in bashrc. Please help.

  • Welcome to Stack Overflow and thank you for your question. Please consider posting the text of errors as well as logs in `code blocks` rather than screenshots. It makes it easier to read inline, helps search engines find the question in the future if others have the same problem, and allows others to copy/paste if it helps them answer your question. – NotTheDr01ds Jan 08 '21 at 20:33

1 Answers1

1

This sounds similar to this question which I previously answered. While that was for Django and yours is about Jupyter, I have a feeling it's the same root issue.

If you do a python3 -m http.server 3001, can you access it from Windows at http://localhost:3001? If not, then it's probably the port forwarding problem rather than anything specific to Jupyter.

The consensus of those that commented on my answer seemed to be that wsl --shutdown was the best solution. I can say that, since then, even though I have Fast Startup disabled, I've seen the problem and had to do a wsl --shutdown and restart to resolve.

NotTheDr01ds
  • 15,620
  • 5
  • 44
  • 70