您好,登錄后才能下訂單哦!
小編這次要給大家分享的是jupyter啟動卡死怎么辦,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
問題描述
系統:Win10;之前安裝過Cpython,現在依次使用pip install ipython與pip install jupyter安裝了 Ipython 6.5.0與 jupyter 1.0.0。但是在PowerShell上使用命令jupyter notebook 運行jupyter時服務器始終卡頓,根本沒法用。
解決方法
使用命令jupyter notebook --generate-config 可看到文件 jupyter_notebook_config.py位置
手動打開文件進行編輯,找到c.NotebookApp.notebook_dir 修改默認目錄并去掉注釋保存,最好修改目錄到非C盤 c.NotebookApp.notebook_dir = 'E:\\Program Files\Python3_6_6\jupyter'(大約246行,注意磁盤名后面是雙斜線)
jupyter notebook啟動服務器,正常運行
補充知識:jupyter notebook 瀏覽器打開空白卡死情況
jupyter notebook 需要用谷歌瀏覽器打開才可以,其他的瀏覽器打開后多半是空白的。添加默認瀏覽器如下:
1.在anaconda prompt 里面直接輸入或cmd中輸入(前提是已經將anaconda加入環境變量):
jupyter notebook --generate-config
讓jupyter生成一個配置文件,生成后你會看到文件地址的,如圖所示:
C:\Users\Administrator\.jupyter\jupyter_notebook_config.py
2.然后就可以使用記事本之類的,打開這個jupyter_notebook_config.py文件
然后查找,browser,找到如下代碼:
## Specify what command to use to invoke a web browser when opening the notebook. # If not specified, the default browser will be determined by the `webbrowser` # standard library module, which allows setting of the BROWSER environment # variable to override it. #c.NotebookApp.browser = u''
在這個后面,添加如下代碼(google瀏覽器):
## Specify what command to use to invoke a web browser when opening the notebook. # If not specified, the default browser will be determined by the `webbrowser` # standard library module, which allows setting of the BROWSER environment # variable to override it. #c.NotebookApp.browser = '' import webbrowser webbrowser.register('chrome', None, webbrowser.GenericBrowser(u'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe')) c.NotebookApp.browser = 'chrome'
看完這篇關于jupyter啟動卡死怎么辦的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。