CentOS7伺服器安裝Jupyter Notebook
關於jupyter 的設定
jupyter 設定
生成登入密碼
可以進入jupyter ,或者Ipython,輸入以下程式碼
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:#如'passwd' 輸入自己的密碼
Verify password:#再次輸入'passwd'
Out[2]: 'sha1:9ffede0825894254b2e042ea597d7711aad'
生成jupyter 的配置檔案
$ jupyter notebook --generate-config
編輯jupyter 配置檔案
$ vim ~/.jupyter/jupyter_notebook_config.py
在裡面新增如下資訊
# Set options for certfile, ip, password, and toggle off
# browser auto-opening
#c.NotebookApp.certfile = u'/absolute/path/to/your/certificate/mycert.pem'
#c.NotebookApp.keyfile = u'/absolute/path/to/your/certificate/mykey.key'
# Set ip to '*' to bind on all interfaces (ips) for the public server
#上面的感覺沒有用,註釋了
c.NotebookApp.ip = '*'
c.NotebookApp.password = u'sha1:9ffede0825894e042ea597d771089edf11aad'
#發現更方便的方法,直接用上面的明文會簡單,當然可能不安全
#c.NotebookApp.password = u'sha1:bcd259ccf...<就是剛剛上面的密碼,替換冒號裡面的值>'
c.NotebookApp.open_browser = False
# It is a good idea to set a known, fixed port for server access,設定埠
c.NotebookApp.port = 8888
上週停電,伺服器現在重啟,以後密碼總是不對,按照配置檔案中的修改也不行,最後查詢文件,又用了另外一種方法:
[[email protected] ~]$ jupyter notebook password
Enter password: "mima"
Verify password: "mima"
[NotebookPasswordApp] Wrote hashed password to /home/centos/.jupyter/jupyter_notebook_config.json
[[email protected] ~]$ jupyter notebook
[W 09:56:03.592 NotebookApp] WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended.
[I 09:56:03.650 NotebookApp] JupyterLab alpha preview extension loaded from /home/centos/anaconda3/lib/python3.6/site-packages/jupyterlab
JupyterLab v0.27.0
Known labextensions:
[I 09:56:03.653 NotebookApp] Running the core application with no additional extensions or settings
[I 09:56:03.663 NotebookApp] Serving notebooks from local directory: /home/centos
[I 09:56:03.663 NotebookApp] 0 active kernels
[I 09:56:03.663 NotebookApp] The Jupyter Notebook is running at: http://[all ip addresses on your system]:8888/
[I 09:56:03.663 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
最後進入網頁,輸入在上面的配置好的密碼 :’mima’,就可以進入了
配置防火牆埠
直接在伺服器執行命令
$ jupyter notebook
我用的是CentOS7.3,不過我在客戶端連線不反應,一查是防火牆的問題
於是就在防火牆新增 8888 埠
#新增8888埠
$ firewall-cmd --zone=public --add-port=8888/tcp --permanent
#重啟防火牆
$ systemctl restart firewalld.service
好的,在輸入啟動,
$ jupyter notebook
[[email protected] ~]$ jupyter notebook
[W 09:50:16.385 NotebookApp] WARNING: The notebook server is listening on all IP addresses and not usin
[I 09:50:16.390 NotebookApp] The port 8888 is already in use, trying another port.
[I 09:50:16.455 NotebookApp] JupyterLab alpha preview extension loaded from /home/centos/anaconda3/lib/
JupyterLab v0.27.0
Known labextensions:
[I 09:50:16.460 NotebookApp] Running the core application with no additional extensions or settings
[I 09:50:16.472 NotebookApp] Serving notebooks from local directory: /home/centos
[I 09:50:16.472 NotebookApp] 0 active kernels
[I 09:50:16.472 NotebookApp] The Jupyter Notebook is running at: http://[all ip addresses on your syste
[I 09:50:16.472 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip
不過看啟動文件是不是8888,如果被佔用就是8889,
檢視那個程序在佔用這個埠,沒用就刪除了,
[[email protected] centos]$ netstat -ntlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1/systemd
tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN 1980/dnsmasq
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1598/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 1601/cupsd
tcp 0 0 0.0.0.0:8888 0.0.0.0:* LISTEN 18997/python
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1874/master
tcp6 0 0 :::111 :::* LISTEN 1/systemd
tcp6 0 0 :::22 :::* LISTEN 1598/sshd
tcp6 0 0 ::1:631 :::* LISTEN 1601/cupsd
tcp6 0 0 :::8888 :::* LISTEN 18997/python
tcp6 0 0 ::1:25 :::* LISTEN 1874/master
以前後臺啟動了jupyter ,所以刪除了,
kill -9 18997
這下就好了
後面再等了,讓輸入密碼,我一直輸入 ‘sha1:9ffede0825894254b2e042ea597d771089e11aad’
不過一直報錯,所以我估計是’sha1:’ 不需要輸入,只需要冒號後面的。
最後沒有問題後,讓這個Server一直後臺執行,即使關了ssh 也不用停服務
$ nohup jupyter notebook &
#項查詢日誌,可以輸入
$ cat nohup.out
相關推薦
CentOS7伺服器安裝Jupyter Notebook
關於jupyter 的設定 jupyter 設定 生成登入密碼 可以進入jupyter ,或者Ipython,輸入以下程式碼 In [1]: from notebook.auth import passwd In [2]:
基於CentOS7安裝Jupyter Notebook
概述 由於我的開發環境是CentOS,現在主要是以Python為主,偶爾夾雜C/C++和GoLang語言。在本地開發、測試、提交git和在生產環境再去測試、開發,並且會在生產環境會有臨時性的開發任務和調整,都是比較浪費時間的。不建議直接修改生產環境的程式碼,臨時性的修改後一定要測試並穩定執行
CAFFE(四):Ubuntu 下安裝jupyter notebook
ltr 完成 graph alt+ med 清單文件 數據 接口 nts 第一步、安裝 pycaffe notebook 接口環境 在上一步成功安裝 caffe 之後,就可以通過 caffe 去做訓練數據集或者預測各種相關的事了,只不過需要在命令行下通過 caffe 命
linux多虛擬環境安裝jupyter notebook
檢查 false 文檔 adt 下載 grep zip 修改配置文件 book 1.linux環境下載python虛擬環境Miniconda包wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Mini
ubuntu 16.04安裝jupyter notebook使用與進階
inux cto linux nohup lockfile don cer 指定 ner 一、Jupyter Notebook簡介 Jupyter Notebook(此前被稱為 IPython notebook)是一個交互式筆記本,支持運行 40 多種編程語言。Jupyte
在windows下安裝Jupyter Notebook的安裝和使用
mathjax pytho net edi .org 版本過低 解壓縮 系列 test 1 認識jupyter jupyter /?d?u?p?t?(r)/可以提供適合捕捉整個計算過程的基於web的應用程序;開發、記錄和執行代碼,以及結果輸出。 jupyter Notebo
windows安裝Jupyter Notebook Windows下的Python 3.6.1的下載與安裝(適合32bits和64bits)(圖文詳解)
這是我自定義的Python 的安裝目錄 (D:\SoftWare\Python\Python36\Scripts) 1、Jupyter Notebook 和 pip 為了更加方便地寫 Python 程式碼,還需要安裝 Jupyter notebook。 利用 pip 安裝
解決anaconda3.6安裝jupyter notebook 報錯的坑【The kernel has died, and the automatic restart has failed.】
解決anaconda3.6安裝 jupyter notebook 安裝相應的包 安裝anaconda3.6 windows+R,鍵入“cmd”,進入windows命令列模式,輸入:jupyter no
伺服器+docker+jupyter notebook
閒來無事,買了一個阿里雲的伺服器,1核2g跑機器學習模型慢了一點,不過喜歡折騰未必不是一件好事。為了方便資料探勘,資料視覺化,以及kaggle相關的一系列比賽,在伺服器上搭建了一個jupyter notebook,目前只是用root許可權登入的。 1、 Cent
安裝Jupyter Notebook過程及出錯解決方案
1、直接安裝:pip3 install jupyter 2、jupyter notebook 3、①報錯: 解決:重新安裝一下iPython ②如果報錯沒有:prompt-toolkit
Jupyter notebook教程系列(一)在windows上安裝Jupyter notebook
Jupyter notebook 一、Jupyternotebook簡介 jupyternotebook擴充套件了基於控制檯的互動計算方法,提供了一個適合捕獲整個計算過程的基於web的應用程式:開發、記錄和執行程式碼,以及傳遞結果。Jupyternotebook由兩部分組
pip 安裝jupyter notebook的一次異常
當我pip install jupyter notebook 時,出現如下錯誤: Collecting tornado>=4 (from notebook->jupyter) Downloading https://pypi.tuna.tsinghua.ed
anaconda安裝jupyter notebook時報錯:ImportError:DLL load failed,找不到指定模組的解決辦法
在用anaconda裝jupyter notebook的時候安裝過程沒問題,但是執行jupyter時報錯,錯誤如下。可能是因為我之前用的是anaconda2,有一個jupyter,然後我把annaconda2解除安裝之後重新裝了一個anaconda3,然後重灌jupyter的時候遇到了之前未解除安裝
安裝jupyter notebook報錯
1、按錯誤提示的網址下載一個元件 2、升級pip 3、Could not find a version that satisfies the requirement argparse==1.2.1 諸如此類的問題可以通過以下命令解決: pip --allow-all-ex
TensorFlow環境下安裝jupyter notebook後,cmd打開出現cannot import name 'ensure_dir_exists'
最近按照TensorFlow官網給的在windows下利用Anaconda安裝tensorflow的方法,遇到不少問題,安裝過程具體如下: (1)以管理員身份執行Anaconda Prompt (2)輸入以下命令建立tensorflow環境 conda create -n tensorf
Python開發筆記之一——安裝Jupyter Notebook
1、PIP的安裝 首先我們需要安裝pip,通過pip來安裝jupyter;pip的安裝之前需要去這裡https://bootstrap.pypa.io/get-pip.py下載get-pip.py檔案(檔案有點大,有點慢,耐心等待); 檔案下載下來執行如下命令: ➜
【Docker】centos7伺服器安裝docker想要的版本(一)
事無鉅細、人無完人! 1.Centos 7.X以上,核心版本高於3.10的64位系統支援Docker,通過uname -r檢視。 uname -r 2.查詢安裝過的包 yum list installed | grep docker 3.確認你要安裝docker的版本:
Ubuntu安裝jupyter notebook的編碼問題,怎麼修改都不行[已解決]
這幾天在安裝Jupyter Notebook 的時候,無論怎麼調,怎麼改編碼格式,都還是打不開Jupyter botebook,踩了很多坑,我的是Ubuntu 16.04系統。 先說一下我的安裝語句和步驟 (1)更新和升級包 sudo apt-get update su
ubutun 伺服器配置jupyter notebook
由於能力有限,學習機器學習時候發現,自己的電腦帶不起來,所以想起了伺服器,選擇的是阿里的ubutun伺服器,所以希望能夠 使用jupyter notebook,看到網上一大片,配置和好久,才成功,在這裡進行一下記錄,一邊將來使用方便。 第一步:得到的是一個沒有自己安裝軟體的伺服器,ubutun自帶pyth
[基礎常識]在 Debian 8 系統裡安裝 jupyter notebook
雲友“kindasusenn”在安裝jupyternotebook 時遇到了問題,所以在這裡也想實踐一下。環境:Debian 8過程:1. Debian 8 預設的 python 版本是2.7,按 jupyter notebook 的安裝建議,先安裝 python3.6