Jupyter notebook shows blank page in browserMy Jupyter Notebook doesn't work properlyJupyter Notebook Repeatedly Corrupted (can save but not reload)I cannot copy the token of jupyter notebookJupyter Notebook is not being opened in windows using Anaconda Prompt?How to remove password for Jupyter Notebooks and set token againApplication launch error in Jupyter notebookPython 3 Jupiter Notebook FORBIDDEN to be savedJupyter Notebook on AWS hangsIssue in opening Jupyter notebook for PysparkJupyter Notebook Kernel busy all the timeCannot load jupyter notebook tree page

At what rate does the volume (velocity) of a note decay?

How to judge a Ph.D. applicant that arrives "out of thin air"

Writing a clean implementation of Rock, Paper, Scissors game in c++

Did the IBM PC use the 8088's NMI line?

kids pooling money for Lego League and taxes

What does "see" in "the Holy See" mean?

3D Statue Park: U shapes

"I you already know": is this proper English?

Convert a string like 4h53m12s to a total number of seconds in JavaScript

Terence Tao–type books in other fields?

Does academia have a lazy work culture?

What is the lowest-speed bogey a jet fighter can intercept/escort?

TSA asking to see cell phone

Drillers for petroleum strike gusher of blood

Trying to build a function to compute divided difference for arbitrary list of points

Unethical behavior : should I report it?

Where to place an artificial gland in the human body?

How can I stop myself from micromanaging other PCs' actions?

Why are all my history books dividing Chinese history after the Han dynasty?

How can I create a pattern of parallel lines that are increasing in distance in Photoshop / Illustrator?

How do I stop my characters falling in love?

Why did Germany launch its spy satellites from Russia?

Why not use a diode instead of a resistor for current sense circuits?

What is "I bet" in German?



Jupyter notebook shows blank page in browser


My Jupyter Notebook doesn't work properlyJupyter Notebook Repeatedly Corrupted (can save but not reload)I cannot copy the token of jupyter notebookJupyter Notebook is not being opened in windows using Anaconda Prompt?How to remove password for Jupyter Notebooks and set token againApplication launch error in Jupyter notebookPython 3 Jupiter Notebook FORBIDDEN to be savedJupyter Notebook on AWS hangsIssue in opening Jupyter notebook for PysparkJupyter Notebook Kernel busy all the timeCannot load jupyter notebook tree page






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I am launching a Jupyter notebook from an Anaconda environment (Python 3.6.8) on Windows 10 and when I do that the page that's displayed in my Chrome browser is totally blank.



The output in the console (git bash) window looks like this:



$ jupyter notebook object_detection_tutorial.ipynb
[I 13:18:13.500 NotebookApp] Serving notebooks from local directory: C:homegitobject_detection_tensorflowTensorFlowmodelsresearchobject_detection
[I 13:18:13.500 NotebookApp] The Jupyter Notebook is running at:
[I 13:18:13.500 NotebookApp] http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b
[I 13:18:13.500 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 13:18:13.513 NotebookApp]

To access the notebook, open this file in a browser:
file:///C:/Users/James%20Adams/AppData/Roaming/jupyter/runtime/nbserver-2808-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b


If I copy and paste the URL listed above into the Chrome browser address bar I get a normal looking response in the console but the same blank page in the browser:



[I 13:21:17.840 NotebookApp] 302 GET /?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b (::1) 0.99ms


I have tried a number of things with no different result so far:



  • clear the browser's cache and cookies

  • downgraded the notebook module to 5.7.4 (conda install notebook=5.7.4)

  • used a different browser (Firefox)

What else can I try to fix this?










share|improve this question
























  • I have managed to get around this by using another port number other than the default 8888 (I used 8889). I first ran jupyter notebook stop 8888 but it reported "There are no running servers" so that may not have been necessary. I then ran jupyter notebook --port=8889 and the notebook appeared as expected. How can I troubleshoot this issue?

    – James Adams
    Mar 26 at 17:46






  • 1





    Here's on recent post of a similar nature stackoverflow.com/questions/55253094/…. Not sure if it will be useful to you.

    – fountainhead
    Mar 26 at 17:46












  • The thread I mentioned above seems to conclude (looking at the gitub conversation), that version 5.7.5 of Jupyter notebook works. Did that version work for you?

    – fountainhead
    Mar 26 at 17:54












  • Thanks @fountainhead. I have not had luck so far by downgrading to a previous version of the notebook package. When I look at the developer tools console in Chrome I see messages like this: Refused to execute script from 'localhost:8888/static/components/es6-promise/…' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.

    – James Adams
    Mar 27 at 13:26

















1















I am launching a Jupyter notebook from an Anaconda environment (Python 3.6.8) on Windows 10 and when I do that the page that's displayed in my Chrome browser is totally blank.



The output in the console (git bash) window looks like this:



$ jupyter notebook object_detection_tutorial.ipynb
[I 13:18:13.500 NotebookApp] Serving notebooks from local directory: C:homegitobject_detection_tensorflowTensorFlowmodelsresearchobject_detection
[I 13:18:13.500 NotebookApp] The Jupyter Notebook is running at:
[I 13:18:13.500 NotebookApp] http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b
[I 13:18:13.500 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 13:18:13.513 NotebookApp]

To access the notebook, open this file in a browser:
file:///C:/Users/James%20Adams/AppData/Roaming/jupyter/runtime/nbserver-2808-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b


If I copy and paste the URL listed above into the Chrome browser address bar I get a normal looking response in the console but the same blank page in the browser:



[I 13:21:17.840 NotebookApp] 302 GET /?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b (::1) 0.99ms


I have tried a number of things with no different result so far:



  • clear the browser's cache and cookies

  • downgraded the notebook module to 5.7.4 (conda install notebook=5.7.4)

  • used a different browser (Firefox)

What else can I try to fix this?










share|improve this question
























  • I have managed to get around this by using another port number other than the default 8888 (I used 8889). I first ran jupyter notebook stop 8888 but it reported "There are no running servers" so that may not have been necessary. I then ran jupyter notebook --port=8889 and the notebook appeared as expected. How can I troubleshoot this issue?

    – James Adams
    Mar 26 at 17:46






  • 1





    Here's on recent post of a similar nature stackoverflow.com/questions/55253094/…. Not sure if it will be useful to you.

    – fountainhead
    Mar 26 at 17:46












  • The thread I mentioned above seems to conclude (looking at the gitub conversation), that version 5.7.5 of Jupyter notebook works. Did that version work for you?

    – fountainhead
    Mar 26 at 17:54












  • Thanks @fountainhead. I have not had luck so far by downgrading to a previous version of the notebook package. When I look at the developer tools console in Chrome I see messages like this: Refused to execute script from 'localhost:8888/static/components/es6-promise/…' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.

    – James Adams
    Mar 27 at 13:26













1












1








1


1






I am launching a Jupyter notebook from an Anaconda environment (Python 3.6.8) on Windows 10 and when I do that the page that's displayed in my Chrome browser is totally blank.



The output in the console (git bash) window looks like this:



$ jupyter notebook object_detection_tutorial.ipynb
[I 13:18:13.500 NotebookApp] Serving notebooks from local directory: C:homegitobject_detection_tensorflowTensorFlowmodelsresearchobject_detection
[I 13:18:13.500 NotebookApp] The Jupyter Notebook is running at:
[I 13:18:13.500 NotebookApp] http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b
[I 13:18:13.500 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 13:18:13.513 NotebookApp]

To access the notebook, open this file in a browser:
file:///C:/Users/James%20Adams/AppData/Roaming/jupyter/runtime/nbserver-2808-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b


If I copy and paste the URL listed above into the Chrome browser address bar I get a normal looking response in the console but the same blank page in the browser:



[I 13:21:17.840 NotebookApp] 302 GET /?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b (::1) 0.99ms


I have tried a number of things with no different result so far:



  • clear the browser's cache and cookies

  • downgraded the notebook module to 5.7.4 (conda install notebook=5.7.4)

  • used a different browser (Firefox)

What else can I try to fix this?










share|improve this question
















I am launching a Jupyter notebook from an Anaconda environment (Python 3.6.8) on Windows 10 and when I do that the page that's displayed in my Chrome browser is totally blank.



The output in the console (git bash) window looks like this:



$ jupyter notebook object_detection_tutorial.ipynb
[I 13:18:13.500 NotebookApp] Serving notebooks from local directory: C:homegitobject_detection_tensorflowTensorFlowmodelsresearchobject_detection
[I 13:18:13.500 NotebookApp] The Jupyter Notebook is running at:
[I 13:18:13.500 NotebookApp] http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b
[I 13:18:13.500 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 13:18:13.513 NotebookApp]

To access the notebook, open this file in a browser:
file:///C:/Users/James%20Adams/AppData/Roaming/jupyter/runtime/nbserver-2808-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b


If I copy and paste the URL listed above into the Chrome browser address bar I get a normal looking response in the console but the same blank page in the browser:



[I 13:21:17.840 NotebookApp] 302 GET /?token=bfb419ee35f8fd9800621e52dc8d73515990e2298148135b (::1) 0.99ms


I have tried a number of things with no different result so far:



  • clear the browser's cache and cookies

  • downgraded the notebook module to 5.7.4 (conda install notebook=5.7.4)

  • used a different browser (Firefox)

What else can I try to fix this?







python jupyter-notebook anaconda






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 3 at 18:52









halfer

15.2k7 gold badges61 silver badges126 bronze badges




15.2k7 gold badges61 silver badges126 bronze badges










asked Mar 26 at 17:29









James AdamsJames Adams

3,51112 gold badges55 silver badges90 bronze badges




3,51112 gold badges55 silver badges90 bronze badges












  • I have managed to get around this by using another port number other than the default 8888 (I used 8889). I first ran jupyter notebook stop 8888 but it reported "There are no running servers" so that may not have been necessary. I then ran jupyter notebook --port=8889 and the notebook appeared as expected. How can I troubleshoot this issue?

    – James Adams
    Mar 26 at 17:46






  • 1





    Here's on recent post of a similar nature stackoverflow.com/questions/55253094/…. Not sure if it will be useful to you.

    – fountainhead
    Mar 26 at 17:46












  • The thread I mentioned above seems to conclude (looking at the gitub conversation), that version 5.7.5 of Jupyter notebook works. Did that version work for you?

    – fountainhead
    Mar 26 at 17:54












  • Thanks @fountainhead. I have not had luck so far by downgrading to a previous version of the notebook package. When I look at the developer tools console in Chrome I see messages like this: Refused to execute script from 'localhost:8888/static/components/es6-promise/…' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.

    – James Adams
    Mar 27 at 13:26

















  • I have managed to get around this by using another port number other than the default 8888 (I used 8889). I first ran jupyter notebook stop 8888 but it reported "There are no running servers" so that may not have been necessary. I then ran jupyter notebook --port=8889 and the notebook appeared as expected. How can I troubleshoot this issue?

    – James Adams
    Mar 26 at 17:46






  • 1





    Here's on recent post of a similar nature stackoverflow.com/questions/55253094/…. Not sure if it will be useful to you.

    – fountainhead
    Mar 26 at 17:46












  • The thread I mentioned above seems to conclude (looking at the gitub conversation), that version 5.7.5 of Jupyter notebook works. Did that version work for you?

    – fountainhead
    Mar 26 at 17:54












  • Thanks @fountainhead. I have not had luck so far by downgrading to a previous version of the notebook package. When I look at the developer tools console in Chrome I see messages like this: Refused to execute script from 'localhost:8888/static/components/es6-promise/…' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.

    – James Adams
    Mar 27 at 13:26
















I have managed to get around this by using another port number other than the default 8888 (I used 8889). I first ran jupyter notebook stop 8888 but it reported "There are no running servers" so that may not have been necessary. I then ran jupyter notebook --port=8889 and the notebook appeared as expected. How can I troubleshoot this issue?

– James Adams
Mar 26 at 17:46





I have managed to get around this by using another port number other than the default 8888 (I used 8889). I first ran jupyter notebook stop 8888 but it reported "There are no running servers" so that may not have been necessary. I then ran jupyter notebook --port=8889 and the notebook appeared as expected. How can I troubleshoot this issue?

– James Adams
Mar 26 at 17:46




1




1





Here's on recent post of a similar nature stackoverflow.com/questions/55253094/…. Not sure if it will be useful to you.

– fountainhead
Mar 26 at 17:46






Here's on recent post of a similar nature stackoverflow.com/questions/55253094/…. Not sure if it will be useful to you.

– fountainhead
Mar 26 at 17:46














The thread I mentioned above seems to conclude (looking at the gitub conversation), that version 5.7.5 of Jupyter notebook works. Did that version work for you?

– fountainhead
Mar 26 at 17:54






The thread I mentioned above seems to conclude (looking at the gitub conversation), that version 5.7.5 of Jupyter notebook works. Did that version work for you?

– fountainhead
Mar 26 at 17:54














Thanks @fountainhead. I have not had luck so far by downgrading to a previous version of the notebook package. When I look at the developer tools console in Chrome I see messages like this: Refused to execute script from 'localhost:8888/static/components/es6-promise/…' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.

– James Adams
Mar 27 at 13:26





Thanks @fountainhead. I have not had luck so far by downgrading to a previous version of the notebook package. When I look at the developer tools console in Chrome I see messages like this: Refused to execute script from 'localhost:8888/static/components/es6-promise/…' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.

– James Adams
Mar 27 at 13:26












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55363042%2fjupyter-notebook-shows-blank-page-in-browser%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55363042%2fjupyter-notebook-shows-blank-page-in-browser%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript