/* * Copyright (
Surgical managemen
The present invent
For a few months,
Q: Error when cre
Q: How to get cur
The present invent
It may also be cha
invention relates
invention relates

Kinetics and metab
A comparison of th
If you're a fan of
In its latest crac
Q: How to pass a
Drug-delivery syst
The present invent
Q: What's the qui
The use of a "Birm
NO. 07-05-0441-CR
Q: How to access a remote Jupyter Notebook server on Windows? I am trying to access a remote server, and I have two options: 1) In windows PowerShell, I can simply write jupyter notebook --NotebookApp.allow_origin='http://10.1.2.3:8000' (which works as expected). But if I try to write the same command in a python script, e.g. in a .bat file, I get this error: Error Any suggestions? A: This answer addresses the problem of calling the Jupyter Notebook Server with the Python API on Windows. To start the Jupyter Notebook Server on Windows, you need to have Python 2.7 or 3.4.2 installed as well as an executable like C:\Program Files\Anaconda2\python.exe, C:\Program Files\Anaconda3\python.exe or C:\Python34\python.exe. Then, you call the notebook server like this: C:\Anaconda2\python.exe C:\Anaconda2\Scripts\jupyter-notebook-script.py C:\Anaconda2\lib\site-packages\jupyter_server\start_notebook_server.py --port=8888 --NotebookApp.allow_origin=* The only difference with the Windows command in PowerShell is that --NotebookApp.allow_origin=* is passed as a string to the Jupyter Notebook server as a parameter. A: You don't have to install python to run jupyter notebook on windows machine. (if you want it as a service) To access jupyter notebook, open a new tab, write below command in your browser. jupyter notebook Then, click on "Open in Browser". You should see the start page of jupyter notebook with "connect" button. click on it and it will ask for username and password. If you want to access your notebook as a service, enter your username and password as credentials and click on "save" in the dialog box. Your credentials will be remembered next time you access jupyter notebook. Hope this helps! A: I ran into a similar problem when setting up my Jupyter notebook server. I was not able to connect from the command line using the exact same command that works in the notebook. In my case I had to use -p and specify the port. C:\Python27\python.exe jupyter-notebook --port=8888 --NotebookApp.allow_origin='*' And I found this answer on stackoverflow. Setting up Jupyter Notebook server on Windows A: I have finally found the solution. The problem was with the Python path. All the suggestions using cmd worked on windows 10, but not on windows 8.1. I have a 64bit windows, so I installed python from Anaconda and I downloaded conda. After that I ran the following command: conda update --prefix=C:\Anaconda That finally installed the needed paths. After that I ran the next code: jupyter notebook --NotebookApp.allow_origin='*' And everything worked as expected. I run cmd as admin The path in my path was C:\Anaconda2\python.exe I hope this helps others as I spent several hours trying to figure this out. EDIT: Now this does not work anymore. I updated Anaconda to the last version and the problem persists. However, as suggested by gshetty, one can install anaconda on the C: drive and not have to worry about the path: conda create --yes conda conda install conda That seems to work fine on windows 10 and windows 8.1. EDIT: Now this does not work anymore. I updated Anaconda to the last version and the problem persists. However, as suggested by gshetty, one can install anaconda on the C: drive and not have to worry about the path: conda create --yes conda conda install conda That seems to work fine on windows 10 and windows 8.1.