0

I just installed anaconda and I'm trying to open Jupyter notebook but the next code showing up in a notepad:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="refresh" content="1;url=http://localhost:8890/tree?token=*the real token*" />
    <title>Opening Jupyter Notebook</title>
    <script>
      setTimeout(function() {
        window.location.href = "http://localhost:8890/tree?token=*the real token*";
      }, 1000);
    </script>
</head>
<body>

<p>
    This page should redirect you to Jupyter Notebook. If it doesn't,
    <a href="http://localhost:8890/tree?token=*the real token*">click here to go to Jupyter</a>.
</p>

</body>
</html>

if I copy the url it is working but I want to open jupyter from the anaconda navigator and i don't know how to fix it. I searched on google the issue and i couldn't find any method that solves it

HOWL_CODER
  • 35
  • 8

1 Answers1

0

Looks like the default configuration is corrupt somehow

Try the solution posted in this StackOverflow post.

How to change the default browser used by the ipython/jupyter notebook in Linux?

You can set which browser to use to open the jupyter notebook.

abhilb
  • 5,639
  • 2
  • 20
  • 26
  • 1
    Thank you it worked. just a note since I'm using windows the dashes should be '/' and not the default of windows which is '\'. – HOWL_CODER Dec 04 '19 at 09:34