Use Jupyter notebook on Fedora 28

来源:https://www.cnblogs.com/xuyaowen/archive/2018/07/10/fedora-jupyter.html
-Advertisement-
Play Games

生產環境使用 Fedora 28, 並且需要搭建一個 Jupyter 的notebook 方便使用,所搭建的Jupyter 支持單人遠程 密碼訪問 1. 安裝 安裝 Jupyter , 出錯 安裝 redhat-rpm-config 安裝 python-devel 安裝 notebook 2. 運行 ...


生產環境使用 Fedora 28, 並且需要搭建一個 Jupyter 的notebook 方便使用,所搭建的Jupyter 支持單人遠程 密碼訪問

1. 安裝

安裝 Jupyter , 出錯

[root@dhcp-65-15 ~]# pip install jupyter
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip install --user` instead.
.
.
.
    running install
    running build
    running build_py
    creating build
    creating build/lib.linux-x86_64-2.7
    copying scandir.py -> build/lib.linux-x86_64-2.7
    running build_ext
    building '_scandir' extension
    creating build/temp.linux-x86_64-2.7
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c _scandir.c -o build/temp.linux-x86_64-2.7/_scandir.o
    gcc: error: /usr/lib/rpm/redhat/redhat-hardened-cc1: No such file or directory
    error: command 'gcc' failed with exit status 1
    
    ----------------------------------------
Command "/usr/bin/python2 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-8KqVrv/scandir/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-IrivkV-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-8KqVrv/scandir/
You are using pip version 9.0.3, however version 10.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

安裝 redhat-rpm-config

[root@dhcp-65-15 ~]# yum install redhat-rpm-config

安裝 python-devel

[root@dhcp-65-15 ~]# yum install python-devel

安裝 notebook

[root@dhcp-65-15 ~]# pip install notebook

2. 運行

生成token 運行:

[root@dhcp-65-15 ~]# jupyter notebook --allow-root
[I 03:45:13.108 NotebookApp] Serving notebooks from local directory: /root
[I 03:45:13.108 NotebookApp] 0 active kernels
[I 03:45:13.108 NotebookApp] The Jupyter Notebook is running at:
[I 03:45:13.108 NotebookApp] http://localhost:8888/?token=60bbeb5c2ef4a8c0e15cfcb85588e265a185b46949e051e7

生成配置文件:

[root@dhcp-65-15 ~]# jupyter notebook --generate-config
Writing default config to: /root/.jupyter/jupyter_notebook_config.py

3. 配置

(1)在配置文件中配置密碼:

c.NotebookApp.password = u'sha1:12a39cedb875:c97d0285f90cec397fffe96f11e5ef5e56e90fa2'

其中:加密使用 

from notebook.auth import passwd  中 password 方法進行加密
可以在 python shell 中生成

或者直接使用:
[root@dhcp-65-15 ~]# jupyter notebook password

設置密碼,並直接寫到配置文件中

如果沒有設置密碼 可以使用 jupyter notebook list 命令來查看 token 從而進行訪問。

(2)允許所有ip地址訪問 

# Set ip to '*' to bind on all interfaces (ips) for the public server
c.NotebookApp.ip = '*'
c.NotebookApp.password = u'sha1:bcd259ccf...<your hashed password here>'
c.NotebookApp.open_browser = False

# It is a good idea to set a known, fixed port for server access
c.NotebookApp.port = 8888

  (3)  保證 IPython Clusters 運行

[root@dhcp-65-15 ~]# pip install ipyparallel

 

具體對 notebook 外觀的修改,可以從源代碼角度進行修改,進行定製,這裡就不多講了。

如果 需要添加 防火牆規則,可以根據實際需要的埠進行添加。

更多配置請參考:

https://jupyter-notebook.readthedocs.io/en/stable/public_server.html#securing-a-notebook-server

https://github.com/ipython/ipyparallel

https://jupyterhub.readthedocs.io/en/latest/

保持更新,轉載請註明出處。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; using Syste... ...
  • 目錄.... 1 文檔格式:.... 1 一.介紹Atlas及架構圖.... 2 二.實驗環境.... 3 三.實施案例.... 3 1.目錄結構... 3 2.配置Mysql主從... 4 3.安裝配置Atlas. 8 4.啟動Atlas. 12 5.查看讀寫分離效果... 13 一.介紹Atla ...
  • 文件基本許可權 Linux中文件許可權由三部分組成: | 許可權 | 八進位 | 十進位| | | | | | | 000 | 0 | | x | 001 | 1 | | w | 010 | 2 | | w x | 011 | 3 | | r | 100 | 4 | | r x | 101 | 5 | | ...
  • Linux 安裝Redis<集群版>(使用Mac遠程訪問) ...
  • 一、zabbix安裝 點擊查看:http://www.cnblogs.com/hwlong/p/5820321.html 二、解決亂碼問題 點擊查看:http://www.cnblogs.com/hwlong/p/5823817.html 三、agent安裝 點擊查看:http://www.cnbl ...
  • 我發現我的win10不能連接別人的遠程桌面,問題如下: 1.windows10家庭版需要修改註冊表,家庭版沒有組織策略: 2.win+R打開快速啟動命令行輸入"regedit": 3.依次打開:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Current ...
  • cd . 當前目錄.. 返回上一級目錄 ../../../返回多級目錄 grep "目標信息" 目標地址 -v :顯示沒有被匹配的信息 mkdir -p:創建多級目錄 mkdir -p /oldboy/test/ 目錄存在也可以反覆創建目錄命令,不會出現報錯 alias 別名 臨時取消別名 \後面添 ...
  • 1.終端執行 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2.執行命令後出現兩個錯,並附如何解決 備註:博主本人macos是在虛擬機上跑的,尚未有 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...