Jupyter Notebook does not start Windows 10How can you find out which process is listening on a port on Windows?What does the “yield” keyword do?Is there an equivalent of 'which' on the Windows command line?Does Python have a ternary conditional operator?What does if __name__ == “__main__”: do?Does Python have a string 'contains' substring method?How do I install pip on Windows?Can't open anaconda jupyter notebook: Network Error (dns_unresolved_hostname)Jupyter Notebook is not being opened in windows using Anaconda Prompt?Jupyter Notebook not working in browser
Realistic, logical way for men with medieval-era weaponry to compete with much larger and physically stronger foes
Opposite of "Concerto Grosso"?
Why are backslashes included in this shell script?
Interview was just a one hour panel. Got an offer the next day; do I accept or is this a red flag?
What did the 8086 (and 8088) do upon encountering an illegal instruction?
Can an open source licence be revoked if it violates employer's IP?
In The Incredibles 2, why does Screenslaver's name use a pun on something that doesn't exist in the 1950s pastiche?
Is it a good security practice to force employees hide their employer to avoid being targeted?
How to search for Android apps without ads?
usage of mir gefallen
What Musical Instrument is this?
Why did the Death Eaters wait to reopen the Chamber of Secrets?
Jam with honey & without pectin has a saucy consistency always
What is the color associated with lukewarm?
Is all-caps blackletter no longer taboo?
Why did the AvroCar fail to fly above 3 feet?
Why not make one big cpu core?
What does the "titan" monster tag mean?
What game uses dice with compass point arrows, forbidden signs, explosions, arrows and targeting reticles?
How effective would a full set of plate armor be against wild animals found in temperate regions (bears, snakes, wolves)?
Why is it bad to use your whole foot in rock climbing
Is it true that "only photographers care about noise"?
Reviewing papers at a journal where your own work is currently submitted
How can religions without a hell discourage evil-doing?
Jupyter Notebook does not start Windows 10
How can you find out which process is listening on a port on Windows?What does the “yield” keyword do?Is there an equivalent of 'which' on the Windows command line?Does Python have a ternary conditional operator?What does if __name__ == “__main__”: do?Does Python have a string 'contains' substring method?How do I install pip on Windows?Can't open anaconda jupyter notebook: Network Error (dns_unresolved_hostname)Jupyter Notebook is not being opened in windows using Anaconda Prompt?Jupyter Notebook not working in browser
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Tried all suggested solutions to start Jupyter Notebook from Win 10 (v. 1803) but no success:
jupyter notebook --generate-config
and then edited the file to:
c.NotebookApp.browser = u'open -a "Google Chrome" %s'
Also set up Chrome as a default browser. Desabled all antiviruses and pop-up blockers
Still I only get:
copy and paste one of these URLs:
http://localhost:8888/?token=5fd225a5087b52cfe92b77bc3b74ba539c2f9058b928c283
and after this I get:
http://localhost:8888/tree
and a blank page below
Interestingly enough in Safari (using Mac) there are no issues to starting Jupyter notebook. Seems only Windows' problem
Anaconda does not start either (from the icon as well). And this is a brand new install
Please, help
PS. there was an attempt to fix this issue (https://github.com/jupyter/notebook/issues/4303) but I do not think it was fixed
python windows jupyter-notebook anaconda
add a comment |
Tried all suggested solutions to start Jupyter Notebook from Win 10 (v. 1803) but no success:
jupyter notebook --generate-config
and then edited the file to:
c.NotebookApp.browser = u'open -a "Google Chrome" %s'
Also set up Chrome as a default browser. Desabled all antiviruses and pop-up blockers
Still I only get:
copy and paste one of these URLs:
http://localhost:8888/?token=5fd225a5087b52cfe92b77bc3b74ba539c2f9058b928c283
and after this I get:
http://localhost:8888/tree
and a blank page below
Interestingly enough in Safari (using Mac) there are no issues to starting Jupyter notebook. Seems only Windows' problem
Anaconda does not start either (from the icon as well). And this is a brand new install
Please, help
PS. there was an attempt to fix this issue (https://github.com/jupyter/notebook/issues/4303) but I do not think it was fixed
python windows jupyter-notebook anaconda
add a comment |
Tried all suggested solutions to start Jupyter Notebook from Win 10 (v. 1803) but no success:
jupyter notebook --generate-config
and then edited the file to:
c.NotebookApp.browser = u'open -a "Google Chrome" %s'
Also set up Chrome as a default browser. Desabled all antiviruses and pop-up blockers
Still I only get:
copy and paste one of these URLs:
http://localhost:8888/?token=5fd225a5087b52cfe92b77bc3b74ba539c2f9058b928c283
and after this I get:
http://localhost:8888/tree
and a blank page below
Interestingly enough in Safari (using Mac) there are no issues to starting Jupyter notebook. Seems only Windows' problem
Anaconda does not start either (from the icon as well). And this is a brand new install
Please, help
PS. there was an attempt to fix this issue (https://github.com/jupyter/notebook/issues/4303) but I do not think it was fixed
python windows jupyter-notebook anaconda
Tried all suggested solutions to start Jupyter Notebook from Win 10 (v. 1803) but no success:
jupyter notebook --generate-config
and then edited the file to:
c.NotebookApp.browser = u'open -a "Google Chrome" %s'
Also set up Chrome as a default browser. Desabled all antiviruses and pop-up blockers
Still I only get:
copy and paste one of these URLs:
http://localhost:8888/?token=5fd225a5087b52cfe92b77bc3b74ba539c2f9058b928c283
and after this I get:
http://localhost:8888/tree
and a blank page below
Interestingly enough in Safari (using Mac) there are no issues to starting Jupyter notebook. Seems only Windows' problem
Anaconda does not start either (from the icon as well). And this is a brand new install
Please, help
PS. there was an attempt to fix this issue (https://github.com/jupyter/notebook/issues/4303) but I do not think it was fixed
python windows jupyter-notebook anaconda
python windows jupyter-notebook anaconda
edited Mar 25 at 15:59
Toly
asked Mar 25 at 0:57
TolyToly
4722720
4722720
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It seems that there were multiple issues that have prevented Notebook from starting. Not necessarily in the order of importance:
Clean up cache in your browser
Install node.JS and upgrade to the latest version
pip install nodejs
Install npm (https://www.npmjs.com/package/node-gyp0) and upgrade to the latest version (https://www.taniarascia.com/how-to-install-and-use-node-js-and-npm-mac-and-windows/)
Also seems that the latest version of Notebook has issues since December 2018. Thus:
pip uninstall notebook
pip install notebook==5.7.5
for me v 5.7.5 instead of 5.7.6 is working but you may need to go lower to 5.6.x
Again, this is only Win 10 issue. Mac OS works fine
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330059%2fjupyter-notebook-does-not-start-windows-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It seems that there were multiple issues that have prevented Notebook from starting. Not necessarily in the order of importance:
Clean up cache in your browser
Install node.JS and upgrade to the latest version
pip install nodejs
Install npm (https://www.npmjs.com/package/node-gyp0) and upgrade to the latest version (https://www.taniarascia.com/how-to-install-and-use-node-js-and-npm-mac-and-windows/)
Also seems that the latest version of Notebook has issues since December 2018. Thus:
pip uninstall notebook
pip install notebook==5.7.5
for me v 5.7.5 instead of 5.7.6 is working but you may need to go lower to 5.6.x
Again, this is only Win 10 issue. Mac OS works fine
add a comment |
It seems that there were multiple issues that have prevented Notebook from starting. Not necessarily in the order of importance:
Clean up cache in your browser
Install node.JS and upgrade to the latest version
pip install nodejs
Install npm (https://www.npmjs.com/package/node-gyp0) and upgrade to the latest version (https://www.taniarascia.com/how-to-install-and-use-node-js-and-npm-mac-and-windows/)
Also seems that the latest version of Notebook has issues since December 2018. Thus:
pip uninstall notebook
pip install notebook==5.7.5
for me v 5.7.5 instead of 5.7.6 is working but you may need to go lower to 5.6.x
Again, this is only Win 10 issue. Mac OS works fine
add a comment |
It seems that there were multiple issues that have prevented Notebook from starting. Not necessarily in the order of importance:
Clean up cache in your browser
Install node.JS and upgrade to the latest version
pip install nodejs
Install npm (https://www.npmjs.com/package/node-gyp0) and upgrade to the latest version (https://www.taniarascia.com/how-to-install-and-use-node-js-and-npm-mac-and-windows/)
Also seems that the latest version of Notebook has issues since December 2018. Thus:
pip uninstall notebook
pip install notebook==5.7.5
for me v 5.7.5 instead of 5.7.6 is working but you may need to go lower to 5.6.x
Again, this is only Win 10 issue. Mac OS works fine
It seems that there were multiple issues that have prevented Notebook from starting. Not necessarily in the order of importance:
Clean up cache in your browser
Install node.JS and upgrade to the latest version
pip install nodejs
Install npm (https://www.npmjs.com/package/node-gyp0) and upgrade to the latest version (https://www.taniarascia.com/how-to-install-and-use-node-js-and-npm-mac-and-windows/)
Also seems that the latest version of Notebook has issues since December 2018. Thus:
pip uninstall notebook
pip install notebook==5.7.5
for me v 5.7.5 instead of 5.7.6 is working but you may need to go lower to 5.6.x
Again, this is only Win 10 issue. Mac OS works fine
edited Mar 27 at 15:39
answered Mar 26 at 22:52
TolyToly
4722720
4722720
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330059%2fjupyter-notebook-does-not-start-windows-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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