一萎攒、安裝jupyter notebook
參考文章:
http://www.reibang.com/p/d2ac1b9e6b24
1秋麸、安裝
pip install jupyter notebook
2同规、配置
(1)初始化配置文件,記住文件config文件地址闲勺,主要是配置它。
jupyter notebook --generate-config
比如路徑是:~/.jupyter/jupyter_notebook_config.py
(2)生成密碼文,在python程序中執(zhí)行下面代碼废登,輸入密碼生成密碼文
from notebook.auth import passwd
passwd()
按提示輸入兩次密碼,你會(huì)得到一個(gè)類似東西如下郁惜,后面會(huì)用到:
argon2:v=19pgcz2o47JUComPlK/7HcVw$9eTXmcv46FJKsg/WC5besLLJYuYtqBvi08AV/Aqx8Nd
- 也可以用下面一行生成密碼
jupyter notebook password
(3)配置config文件
vim ~/.jupyter/jupyter_notebook_config.py
把下面相關(guān)的行的注釋去掉堡距,并改成你的
c.NotebookApp.ip='*'#設(shè)置訪問(wèn)notebook的ip,*表示所有IP
c.NotebookApp.password=u'sha1:xxx'#填寫剛剛復(fù)制的密鑰
c.NotebookApp.open_browser=False# 禁止notebook啟動(dòng)時(shí)自動(dòng)打開(kāi)瀏覽器
c.NotebookApp.port=8889#指定訪問(wèn)的端口兆蕉,默認(rèn)是8888
c.NotebookApp.ip='*'
c.NotebookApp.password=u'sha1:xxx'
c.NotebookApp.open_browser=False
c.NotebookApp.port=2626
二羽戒、新增jupyter notebook kernel
參考文章
https://blog.csdn.net/Scabbards_/article/details/129186307
1.首先激活所需的環(huán)境
conda activate pytorch
或者
source ~envpath/activate env_name
2.命名
python -m ipykernel install --user --name "kernel_name"
如果未安裝ipykernel,剛先安裝 pip install ipykernel
3.打開(kāi)jupyter notebook虎韵,就可以看到該環(huán)境
三易稠、路徑問(wèn)題
windows系統(tǒng),建議在想要的文件路徑文件夾下劝术,按住shift鍵缩多,打開(kāi)powershell,輸入jupyter notebook 养晋,再 enter 衬吆。此時(shí),打開(kāi)的就是當(dāng)前文件夾路徑绳泉。