我正在使用 Anaconda 2.0.1 运行最新的 IPython 2.1。
此页面上有一些说明可帮助您设置 IPython 实例以进行托管。以下是如何调整它以在本地运行。
ipython profile create nbserver
在终端/命令提示符处运行“ ”
在刚刚创建的配置文件目录中,(通常为 ~/.ipython/profile_nbserver)编辑文件 ipython_notebook_config.py。默认情况下,该文件的所有字段都已注释;您需要取消注释和编辑的最小集如下:
c = get_config()
# Kernel config
c.IPKernelApp.pylab = 'inline' # if you want plotting support always
# Notebook config
c.NotebookApp.ip = '*' #or keep it 'localhost'
c.NotebookApp.open_browser = False
# It is a good idea to put it on a known, fixed port
c.NotebookApp.port = 9999
然后打开 2 个终端/command_prompts,以便检查它是否有效。在第一种类型中(不要在任何一行中添加下划线)
ipython console -i --profile nbserver
然后在那个窗口中输入a = 1
和第二个
ipython console -i --profile nbserver --existing
类型print(a)
是的......你可以用“notebook”或“qtconsole”替换“console”这个词
(但对于 qt-console 取出 -i 开关)