jupyter notebook --generate-config
writing default config to: /root/.jupyter/jupyter_notebook_config.py
# ~/.jupyter
[root@root ~
]# python3
python 3.6
.8(default, aug 7
2019,17
:28:10
)[gcc 4.8
.520150623
(red hat 4.8.5-
39)] on linux
type "help",,
"credits"
or"license"
for more information.
>>
>
from notebook.auth import passwd
>>
> passwd(
)enter password:
verify password:
'sha1:b483be92e652:3c7a41f7917bc5a6d551d9114cdb88ffc0f9c00e'
>>
>
jupyter notebook password
# 允許所有ip訪問
"*"# 密碼:之前生成的那一串
'sha1:b483be92e652:3c7a41f7917bc5a6d551d9114cdb88ffc0f9c00e'
# 是否開啟瀏覽器
# 指定埠預設8888
# 啟動mathjax
# 修改工作空間資料夾
'/root/jupyter/'
jupyter notebook --allow-root
# 後台執行
nohup jupyter notebook --allow-root &
# 可能需要解決埠問題,我阿里雲是新增安全策略裡面新增入站規則
遠端訪問jupyter notebook
ipython notebook是乙個基於瀏覽器的python資料分析工具,使用起來非常方便,具有極強的互動方式和富文字的展示效果。jupyter是它的公升級版,但是它預設只能在本地訪問,如果想把它安裝在伺服器上,然後在本地遠端訪問,則需要進行如下配置 1.登陸遠端伺服器 2.生成配置檔案 jupy...
Jupyter Notebook啟用conda環境
windows環境配置如下 1.開啟預設conda環境 root c users username 2.選擇要在jupyter notebook中啟用的env,並啟用 root style transfer d programdata miniconda3 envs style transfer r...
遠端訪問jupyter notebook
步驟如下 1.登入遠端伺服器 2.生成jupyter配置檔案 jupyter notebook generate config 3.手動生成密碼 開啟ipython,建立密碼的密文 in 1 from notebook.auth import passwd in 2 passwd enter pas...