I would like to use Emacs as main editor for iPython notebooks / Jupyter Notebook (with the package ein). I want to ask you if there is a way to run the server without the need to open a web browser.
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
If you don't want to type
ipython notebook --no-browser
all the time,for ipython 4.0 with jupyter:
generate config
it would create a file at some place like
win:
C:\Users\[YouUserName]\.jupyter\jupyter_notebook_config.py
linux:
~/.jupyter/jupyter_notebook_config.py
add
c.NotebookApp.open_browser = False
to this file.All done!
Is this what you want?
Edit
Now you should use instead
Since