1. jupyter notebook 安裝 創建 jupyter 目錄 創建獨立的 Python3 運行環境,並激活進入該環境 安裝 jupyter 2. jupyter notebook 配置 創建 notebooks 目錄 用於保存網頁端創建的 ipynb 文件。 生成配置文件 生成的配置文件 ...
1. jupyter notebook 安裝
- 創建 jupyter 目錄
mkdir jupyter
cd jupyter/
- 創建獨立的 Python3 運行環境,並激活進入該環境
virtualenv --python=python3 --no-site-packages venv
source venv/bin/activate
- 安裝 jupyter
pip install jupyter
2. jupyter notebook 配置
- 創建 notebooks 目錄
mkdir notebooks
用於保存網頁端創建的 ipynb 文件。
- 生成配置文件
jupyter notebook --generate-config
生成的配置文件保存在當前用戶的 .jupyter 目錄下。
- 生成密碼密文
python -c "import IPython; print(IPython.lib.passwd())"
執行後輸入密碼,生成類似 'sha1:xxx:xxx' 的密文。
- 修改配置文件
c.NotebookApp.allow_remote_access = True # 允許遠程訪問
c.NotebookApp.ip = '*' # 允許任意ip訪問此伺服器
c.NotebookApp.password = 'sha1:xxx:xxx' # 上一步生成的密文
c.NotebookApp.open_browser = False # 運行時不打開本機瀏覽器
c.NotebookApp.allow_root =True # 允許使用 root 許可權運行
c.NotebookApp.port = 8888 # 指定 jupyter notebook 使用的埠
c.ContentsManager.root_dir = 'notebooks' # 指定 ipynb 等文件的保存目錄
3. 啟動 jupyter notebook
- 直接運行
jupyter notebook
- 後臺運行
nohup jupyter notebook > ~/jupyter/jupyter.log 2>&1 &