安装很简单
pip install ipython[notebook]
或
pip install jupyter notebook
第一种安装方式即将被淘汰。
安装完在命令行输入ipython notebook或jupyter notebook
就会在浏览器里打开notebook
但是我遇到了notebook在浏览器打不开(网页连接错误,看不到界面)的问题
使用netstat命令查看端口后发现,notebook默认的8888端口没有绑定在127.0.0.1,而是192.168.2.26
因为之前在hosts里面把localhost 改为了192.168.2.26
虽然使用192.168.2.26:8888/tree可以打开页面,但是一直提示需要认证,而且输入notebook提供的token一直错误。
因此在hosts文件里面的localhost改为127.0.0.1能够正常访问了
原因可能如下:
notebook的默认访问地址为http://localhost:8888/
localhost可能被硬编码为127.0.0.1,一旦localhost不是这个值就会出问题