Linux 下安装Jupyter

pip3 install jupyter

pip3 install ipython


pip3 install jupyterlab

jupyter lab

pip3 list | grep jupyterlab

启动:

python3 -m jupyter lab

2.安装朱皮特

pip3 install -i https://pypi.douban.com/simple jupyter

3.进入ipython环境,给jupyter设置密码

ipython #进入ipython的交互式界面

from IPython.lib import passwd

passwd()#生成jupyter登录的密码

4.生成jupter的的配置文件

jupyter notebook --generate-config --allow-root

vim ~/.jupyter/jupyter_notebook_config.py

修改如下配置一致即可,去掉注释符 # 才能读取代码

c.NotebookApp.ip = '建议写当前linux机器的ip地址'

c.NotebookApp.open_browser = False

c.NotebookApp.port = 8000

输入密码

参考:linux安装python3 ,安装IPython ,安装jupyter notebook - 码农公寓 (553668.com)

相关推荐
orion5716 小时前
Missing Semester Class1:course overview and introduction of shell
linux
SkyWalking中文站20 小时前
认识 Horizon UI · 6/17:Trace 探索器
运维·监控·自动化运维
用户120487221611 天前
Linux驱动编译与加载
linux·嵌入式
火车叼位1 天前
写给初级开发者:SSL、SSH、HTTPS 与证书体系全解析
运维
用户805533698031 天前
Input 子系统架构:Core、Handler、Driver 三层是怎么协作的
linux·嵌入式
用户805533698031 天前
RK-Forge外设系列开篇 - 把板子从「能启动」变成「能用」:Ethernet/SPI/MMC 三个纯接线外设
linux·github·嵌入式
小猿姐1 天前
唯品会大规模数据库云原生实践:基于 KubeBlocks 管理数千实例的统一运维之路
运维·elasticsearch·云原生
七歌杜金房2 天前
我终于又有了自己的 Linux 电脑
linux·debian·mac
SkyWalking中文站2 天前
认识 Horizon UI · 5/17:3D 基础设施地图
运维·监控·自动化运维
tntxia3 天前
linux curl命令详解_curl详解
linux