溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jupyter notebook 實(shí)現(xiàn)寫代碼自動(dòng)補(bǔ)全功能

發(fā)布時(shí)間:2020-11-03 16:16:35 來源:億速云 閱讀:584 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)jupyter notebook 實(shí)現(xiàn)寫代碼自動(dòng)補(bǔ)全功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

操作步驟

進(jìn)入命令行環(huán)境。我使用的是conda。有兩種方式進(jìn)入命令行。

方法1:通過anconda navigator界面,選擇environments,選擇對(duì)應(yīng)環(huán)境名,選擇open terminal

方法2:直接使用cmd或者terminal等終端進(jìn)入命令行。激活你想要配置代碼補(bǔ)全的環(huán)境(如果是默認(rèn)環(huán)境不用激活)

1.安裝nbextensions 

pip install jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
jupyter contrib nbextension install --user

2.安裝nbextensions_configurator

pip install --user jupyter_nbextensions_configurator 
jupyter nbextensions_configurator enable --user

如果提示缺少依賴,就使用pip安裝對(duì)應(yīng)依賴即可。

重啟jupyter,在彈出的主頁(yè)面里,能看到增加了一個(gè)Nbextensions標(biāo)簽頁(yè),在這個(gè)頁(yè)面里,勾選Hinterland即啟用了代碼自動(dòng)補(bǔ)全,打開一個(gè)notebook感受一下吧。

jupyter notebook 實(shí)現(xiàn)寫代碼自動(dòng)補(bǔ)全功能 

jupyter notebook 實(shí)現(xiàn)寫代碼自動(dòng)補(bǔ)全功能 

jupyter notebook 實(shí)現(xiàn)寫代碼自動(dòng)補(bǔ)全功能 

如果出現(xiàn)錯(cuò)誤如下:

Installing collected packages: msgpack
Could not install packages due to an EnvironmentError: [WinError 5] 拒絕訪問。:
'E:\\JiangHeSong\\Anaconda35.2.0\\Lib\\site-packages\\msgpack\\_packer.cp36-win_
amd64.pyd'
Consider using the `--user` option or check the permissions.

You are using pip version 10.0.1, however version 18.0 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' comm
and.

只需要加一個(gè)--user 例如:

pip install --user msgpack -i https://pypi.mirrors.ustc.edu.cn/simple

關(guān)于jupyter notebook 實(shí)現(xiàn)寫代碼自動(dòng)補(bǔ)全功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI