IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> jupyter notebook 安装使用 -> 正文阅读

[开发工具]jupyter notebook 安装使用

1 ,安装pip

python3  :wget https://bootstrap.pypa.io/get-pip.py
python2.7:wget  https://bootstrap.pypa.io/pip/2.7/get-pip.py

python get-pip.py

配置pip源

https://mirrors.huaweicloud.com/home

mkdir ~/.pip/
cat > ~/.pip/pip.conf <<EOF
[global]
index-url = https://repo.huaweicloud.com/repository/pypi/simple
trusted-host = repo.huaweicloud.com
timeout = 120
EOF

2, pip 安装 jupyterlab

doc: https://jupyter.org/install
设置默认启动参数:https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html

[root@c7 ~]# pip3.6 install jupyterlab
[root@c7 ~]# useradd  ocean
[root@c7 ~]# su - ocean
Last login: Sat Sep 18 16:52:36 CST 2021 on pts/3
[ocean@c7 ~]$

[ocean@c7 ~]$ jupyter --version
jupyter core     : 4.7.1
jupyter-notebook : 6.4.4
qtconsole        : not installed
ipython          : 7.16.1
ipykernel        : 5.5.5
jupyter client   : 7.0.2
jupyter lab      : 3.1.12
nbconvert        : 6.0.7
ipywidgets       : not installed
nbformat         : 5.1.3
traitlets        : 4.3.3

[ocean@c7 ~]$ jupyter server --generate-config
Writing default config to: /home/ocean/.jupyter/jupyter_server_config.py

[ocean@c7 ~]$ grep -Ev '^#' ~/.jupyter/jupyter_server_config.py |grep c
#c.ServerApp.token = '<generated>'
#c.ServerApp.base_url = '/'
c.ServerApp.ip = '*'
c.ServerApp.open_browser = True
c.ServerApp.port = 8888

[ocean@c7 ~]$ jupyter-lab
[I 2021-09-18 17:03:03.408 ServerApp] jupyterlab | extension was successfully linked.
[I 2021-09-18 17:03:03.717 ServerApp] nbclassic | extension was successfully linked.
[W 2021-09-18 17:03:03.740 ServerApp] WARNING: The Jupyter server is listening on all IP addresses and not using encryption. This is not recommended.
[I 2021-09-18 17:03:03.749 ServerApp] nbclassic | extension was successfully loaded.
[I 2021-09-18 17:03:03.750 LabApp] JupyterLab extension loaded from /usr/local/lib/python3.6/site-packages/jupyterlab
[I 2021-09-18 17:03:03.750 LabApp] JupyterLab application directory is /usr/local/share/jupyter/lab
[I 2021-09-18 17:03:03.755 ServerApp] jupyterlab | extension was successfully loaded.
[I 2021-09-18 17:03:03.756 ServerApp] Serving notebooks from local directory: /home/ocean
[I 2021-09-18 17:03:03.756 ServerApp] Jupyter Server 1.11.0 is running at:
[I 2021-09-18 17:03:03.756 ServerApp] http://c7:8888/lab?token=737e21fae63178b115e79a9f9c9d785e18d44670b7b6d4f6
[I 2021-09-18 17:03:03.757 ServerApp]  or http://127.0.0.1:8888/lab?token=737e21fae63178b115e79a9f9c9d785e18d44670b7b6d4f6
[I 2021-09-18 17:03:03.757 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[W 2021-09-18 17:03:03.764 ServerApp] No web browser found: could not locate runnable browser.
[C 2021-09-18 17:03:03.764 ServerApp]

    To access the server, open this file in a browser:
        file:///home/ocean/.local/share/jupyter/runtime/jpserver-8640-open.html
    Or copy and paste one of these URLs:
        http://c7:8888/lab?token=737e21fae63178b115e79a9f9c9d785e18d44670b7b6d4f6
     or http://127.0.0.1:8888/lab?token=737e21fae63178b115e79a9f9c9d785e18d44670b7b6d4f6

在这里插入图片描述

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-09-19 08:11:12  更:2021-09-19 08:13:14 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 3:14:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码