學習python和人工智慧的相關課程時安裝了Anaconda3,想在Jupyter notebook中歸納整理筆記,為了方便日後查找想安裝目錄(Table of Contents, TOC)插件,查找了安裝方法,但在 jupyter_contrib_nbextensions插件安裝過程中遇到很多問題 ...
學習python和人工智慧的相關課程時安裝了Anaconda3,想在Jupyter notebook中歸納整理筆記,為了方便日後查找想安裝目錄(Table of Contents, TOC)插件,查找了安裝方法,但在 jupyter_contrib_nbextensions插件安裝過程中遇到很多問題,
版本信息:Anaconda3-2020.02(python3.7),本人操作系統Win7旗艦版 64bit
嘗試多種安裝方法,整理如下:
步驟一、安裝Jupyter notebook extensions
嘗試了三種方法才安裝成功! -_-||
方法一:使用conda安裝
conda install -c conda-forge jupyter_contrib_nbextensions
修改了安裝源:
1)conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msy/
2)conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/con /
3)conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
4)conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pty/
conda config --set show_channel_urls yes
conda config --show-sources #查看當前使用源
重新執行命令,反覆安裝剩下的一項很多次,仍然失敗,進度始終在10%--50%左右。
於是更換另一種方法。。
方法二:使用pip3安裝
pip3 --default-timeout=100 install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple/
分別通過豆瓣、清華源下載安裝,總是卡在下圖這個地方超時。網上查詢方法主要是這兩種,都有安裝成功的。我開始懷疑是不是我的電腦記憶體不足啊。。
於是更換第三種方法。
方法三:從下麵網站下載了jupyter_contrib_nbextensions的 tar.gz包,安裝
https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tarball/master
1、進入安裝包目錄下,執行 D:\Anaconda3\python.exe setup.py install ,終於安裝成功了,我太不容易了 。。。。
上述三種方法只是安裝完Jupyter notebook extensions,還沒有結束,需要繼續後面的幾步操作。
步驟二、執行 Jupyter contrib nbextension install --user
步驟三、重新啟動Jupyter Notebook,可以看到插件的Tab簽。
Table of Contents 左側顯示目錄結構
Collapsible Headings 標題可摺疊
步驟四、打開notebook文檔,工具欄右側多了一個顯示目錄樹的按鈕,點擊後可以查看到左側的標題顯示,標題可以摺疊。
(^-^)V