這篇文章主要介紹jupyter notebook如何指定啟動(dòng)目錄,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
在城關(guān)等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站建設(shè)、成都網(wǎng)站制作 網(wǎng)站設(shè)計(jì)制作按需搭建網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站設(shè)計(jì),網(wǎng)絡(luò)營銷推廣,成都外貿(mào)網(wǎng)站建設(shè)公司,城關(guān)網(wǎng)站建設(shè)費(fèi)用合理。jupyter notebook在命令行中啟動(dòng)之后,默認(rèn)根目錄為命令行的當(dāng)前目錄,這樣便利性較差。
下面給出了三種指定啟動(dòng)目錄的方法,分別適用于不同場景。
這種方法是比較常規(guī)的方法,也是最簡單的解決方法。
每次運(yùn)行jupyter notebook之前,先在命令行中利用cd命令切換目錄,然后再運(yùn)行jupyter notebook。
這種方法適合每次在固定目錄運(yùn)行jupyter notebook。
首先,在命令行中輸入命令:jupyter notebook --generate-config生成配置文件,命令執(zhí)行后,會(huì)顯示配置文件的路徑。
C:\Users\Administrator>jupyter notebook --generate-config Writing default config to: C:\Users\Administrator\.jupyter\jupyter_notebook_config.py
打開配置文件jupyter_notebook_config.py,找到c.NotebookApp.notebook_dir配置項(xiàng),去掉注釋,添加指定的目錄。
## The directory to use for notebooks and kernels. #c.NotebookApp.notebook_dir = ''
c.NotebookApp.notebook_dir = 'r'e:/testpath''
在命令行中,運(yùn)行jupyter notebook即可,這樣無論命令中當(dāng)前目錄是什么,jupyter notebook打開的目錄都是指定的e:\testpath。
其實(shí)jupyter notebook命令中已經(jīng)提供了在指定目錄運(yùn)行的參數(shù)--notebook-dir。這種方法更靈活一些,不用切換目錄。當(dāng)然更不用修改配置文件。
--notebook-dir=(NotebookApp.notebook_dir) Default: '' The directory to use for notebooks and kernels.
以上是“jupyter notebook如何指定啟動(dòng)目錄”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!