jupyter
安装配置
ipython 安装
pip install ipython
使用时直接在命令行输入ipython
即可
这里还有一些ipython的基本用法和常用快捷键,留个坑
jupyter 安装
pip install jupyter
安装完成后使用时直接在命令行输入jupyter notebook
即可
jupyter 简单配置
- 设置密码
打开ipython:
In [1]: from jupyter_server.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: '...'
Out[2]后面的字符即为加密后的密码,新建jupyter_config.py
文件,输入一下内容
# 加密后的密码:
c.NotebookApp.password = u'argon2:$argon2id$v=19$m=10240,t=10,p=8$3EmERi7e2EI60W3NzYQWsg$hZZas4aucibWghcucqSFYiRu1Mt8JdiGpnZFiPvZCvM'
# :: 绑定所有ip地址,包括IPv4/IPv6地址
# 如果只想绑定某个ip地址,改成对应的ip即可
c.NotebookApp.ip = '::'
# 绑定的端口号,如果该端口已经被占用
# 会自动使用下一个端口号10000
c.NotebookApp.port = 9999
启动时使用jupyter notebook --config=jupyter_config.py
然后再浏览器进入网址:http://127.0.0.1:9999/tree
即可