Jupyter Notebook on Windows 10 - jupyter-notebook

I am trying to open Jupyter Notebook on Windows 10 and I am having trouble. I already downloaded and installed it. When I click on the Jupyter Notebook icon in my start menu, a black terminal appears titles Jupyter Notebook. Then I just disappears after that like nothing happened.
Things I have done to combat this issue:
I downloaded VirtualBox with Ubuntu and downloaded the Linux version there. However, it stated it could not be installed since it was not a 64-bit system. I tried to download the 32 bit version but the download always failed.
Next I add the the link http://localhost/* to my Kapersky Internet anti-virus exceptions page thinking it was preventing Jupyter from opening. This didn't work and turning off the firewall completely also didn't work.
Any help would be great help!

There are several ways to use jupyter notebook under windows, especially windows 10 professional.
My favorite way is the lovely ubuntu subsystem of windows 10. You can install it directly from the app store, which is free for all windows 10 users. Then install jupyter notebook from the subsystem:
apt install python3-dev python3-pip
pip3 install jupyter
or you can just do
apt install python3-dev python3-pip jupyter
then just run
jupyter notebook
open any windows browser, copy paste the localhost.... thing from ubuntu terminal
then you can using jupyter notebook with a linux core.

As mentioned by #cricket_007, you have to run jupyter first before opening notebooks. From the terminal, run:
> jupyter notebook
After a few seconds, a server will start. If your dashboard does not open automatically, point your browser to http://localhost:8888. Note: if you installed Jupyter with Anaconda, there should be a shortcut you can click to do all of the above.
The dashboard will point to your default working directory. Place notebooks in this directory or navigate to your notebook's directory to open it through the browser.
Should you wish to change the default working directory, see more on configuring notebook paths in the docs.

Related

Jupyter notebook view missing in Spyder ide even after install

Help, I am trying to use jupyter notebook in spyder , I've already installed the jupyter plugin via conda install spyder-notebook -c spyder-ide upon installation I restarted jupyter but the notebook tab is missing under the view tab in spyder.
Message of installation of notebook:
Screenshot of my views and panel tabs in spyder:
Unfortunately,
The Spyder notebook plugin is not yet compatible with Spyder 5 [...]. The latest version of spyder-notebook is compatible with Spyder 4.2[...]
See here. So either you can revert to Spyder 4.2 or wait for a solution. The issue is tracked here.

Installed package on Anaconda not accessible in Jupyter Notebook

I installed Anaconda on an external drive inode/directory/0C707E95707E84EC. I opened Anaconda-Navigator to install r-aer in base(root). So far so good. Then I start Jupyter Notebook from inode/directory/0C707E95707E84EC and am unable to access the aer library.
This all started last week. when I was unable to install aerand after a circus of affairs I finally ended up updating Anaconda and then having to delete and reinstall it. All I want to do is access aeron Jupyter Notebook. The image below (last image) shows library(raer); I have tried many different command versions, e.g. library("Raer")and variations thereof.
I know that AER is installed in Anaconda . Could this be a path issue?
calling library in Jupyter Notebook
for any file on desktop (win 10) Jupyter Notebook can see that file without specifying the path, try putting that file on desktop.
see this it could help:
specifying R library path for RKernel in Anaconda Jupyter notebook_Stack OverFlow

Jupyter Notebook's default page appears nothing [duplicate]

This question already has an answer here:
Jupyter Notebook Opening but no contents are visible
(1 answer)
Closed 3 years ago.
I installed python 3.7.2 version and jupyter notebook with pip command.
All programs and modules are successfully installed and enter the "jupyter notebook" into my folder's domain.
And I copied the URLs and paste to my chrome browser.
But, default pages didn't appear anything.
How can I fix this problem?
I need your help...
Please refer to https://github.com/jupyter/notebook/issues/4467
I encounter similar trouble. So I just do 3 steps:
uninstall Jupyter Notebook 5.7.6:
conda uninstall notebook
install old version:
conda install notebook=5.7.4
After lauching Jupyter Notebook 5.7.4:
Press CTRL+R or CTRL+Shift+R to clear the cache
Then Jupyter Notebook works normally now.
Hope it's helpful to you.

Issue running juypter notebook after installing Anaconda

I recently installed the latest version of Anaconda which i require for a course i am doing in data analytics.
I need to use jupyter notebook but it won't run for me ..i keep getting an error jupyter notebook not found.
In the anaconda prompt i ran command conda list and juypter is in the list. The version of juputer showing is version 4.4.0.
I tried then to launch jupyter notebook through anaconda navigator but no luck either. I did notice though that in Anaconda navigator the version of juypter notebook shows as 5.6.0. The conda list command shows version 4.4.0. Strange. I then decided from navigator to install version 4.4.0 of jupyter. This has allowed me to run jupyter notebook but i cant code in the notebook and it says kernel not connected. A lot of errors also showing in command prompt.
Any help would be much appreciated as i have uninstalled and reinstalled Anaconda over 14 times and im getting nowhere. Two assignments due in on the 11th November so getting quite worried. Im very new to programmjng and from a finance background.
Im running windows 7.
Kind regards
Rebecca

Running Jupyter notebook on fedora

I've installed Jupyter Notebook on a Fedora 28 machine, using anaconda.
I am experiencing the most peculiar of problems: everything goes pretty smoothly, the notebook starts fine on my browser, but my kernels are not running, i.e. ipynb files give me a blank page. I do get a warning:
404 GET /static/components/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full,Safe&delayStartupUntil=configured
I've read the article 'Jupyter can’t start a kernel' on the official documentation and followed their instructions, from this link:
http://jupyter-notebook.readthedocs.io/en/stable/troubleshooting.html#jupyter-can-t-start-a-kernel
But, it doesn't seem to fix the problem, although I think the problem must reside somewhere around there.
I have installed Jupyter Notebooks on several other machines with no problem whatsoever.
Cheers, you guys!
sudo dnf install mathjax fixed the issue for me in Fedora 28 package install (there are guides on how to do it at https://fedoralovespython.org/). They should have made mathjax a dependency in sudo dnf install python3-notebook.

Resources