在隐身窗口中运行jupyter笔记本

时间:2018-02-14 13:05:03

标签: ipython jupyter-notebook

执行命令 jupyter notebook 时,将在Mozilla Firefox上打开笔记本。

如何从命令行在隐身模式的Mozilla Firefox 上打开笔记本?

3 个答案:

答案 0 :(得分:1)

在配置中添加以下内容,以将默认浏览器设置为专用的Firefox(改编自here,参数改编自there):

jupyter_notebook_config.py
[...]
## Specify what command to use to invoke a web browser when opening the notebook.
#  If not specified, the default browser will be determined by the `webbrowser`
#  standard library module, which allows setting of the BROWSER environment
#  variable to override it.
import webbrowser
webbrowser.register('private_firefox', None, webbrowser.get('"' + 'path/to/firefox' +'" -private %s'))
c.NotebookApp.browser = 'private_firefox'
[...]

其中path/to/firefox就是其中之一

  • /usr/bin/firefox(适用于Linux)(请参阅here
  • /Applications/Firefox.app/Contents/MacOS/firefox for macOS(请参阅this
  • C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe(适用于Windows)(如here所述)

注释:
我想其他类似Chrome的浏览器(source中的"...\\chrome.exe" --incognito也可以类似地工作。我还没有测试其他人。如果有任何障碍,请随时发表评论。

答案 1 :(得分:0)

通常Jupyer会在http://localhost:8888上打开,您需要做的就是复制该网址并在隐身的Firefox会话中自行打开。

答案 2 :(得分:0)

在 Safari 上,如果焦点位于隐身窗口上,笔记本将在其中自动打开。