ipython与notevook的基本用法介绍

1 ipython 安装

pip install ipython

2 notebooke 基本用法

启动ipython使用ipython

启动notebook 使用 ipython notebook

3 远程使用ipython notebook 的配置方法 3.0 创建远程服务

语法: ipython profile create

e.g.:

ipython profile create myserver

此时终端会输出 生成的文件位置, 请记住这个位置

3.1 配置openssl 认证

openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem

此时会输出生成的sha 的值, 请记住输出

为了方便今后的使用: 此时可以将 mycert.pem 证书移到 ipython notebook的文件夹,将相关的东西放在一起。

mv mycert.pem .ipython

3.2 修改配置文件c = get_config()
# kernel config
c.ipkernelapp.pylab = ‘inline’ # if you want plotting support always
# notebook config
c.notebookapp.certfile = u’/home/xxx/.ipython/mycert.pem’ ##认证的位置
c.notebookapp.ip = ‘*’
c.notebookapp.open_browser = false
c.notebookapp.password = u’sha1:xxxx’ ## 认证输出的sha值
# it’s a good idea to put it on a known, fixed port
c.notebookapp.port = 99993.3 重新启动ubuntu, 并且启动ipython notebook 服务器ipython notebook –profile=nbserver3.4 远程连接ipython notebook打开本地浏览器访问远程notebook 地址就行,记住端口号是9999

更多ipython与notevook的基本用法介绍相关文章请关注php中文网!

Posted in 未分类

发表评论