April 2018
Beginner
238 pages
7h 13m
English
The default installation for Jupyter runs at http://localhost:8888. While this is convenient for individual use, it can cause problems where other applications may be running at the same port at the server root address. One more tool available is to apply a prefix to the Notebook url using a configuration command as follows:
c.NotebookApp.base_url = '/ipython/'
Here, the Notebook url now becomes http://localhost/ipython:8888.