2017-04-19 98 views

回答

3

有時,您需要重新啓動ipython才能找到新安裝的模塊。

我相信這適用於添加到sys.path的模塊。


Can I zip all the python standard libs and the python still able to import it?site.main()應該工作了。

除此之外,它還會掃描site-packages目錄中的.pth文件,並將其內容添加到sys.path。由於其邏輯在添加之前檢查重複的事實,因此重複調用時不應混亂sys.path

+1

實際上在ipython中重新啓動內核來處理它。謝謝! –

+0

@ArvindKandaswamy你是怎麼做到的?我看到http://stackoverflow.com/questions/26603456/reset-ipython-kernel但它沒有明確的答案。 –

+1

我在jupyter中通過從jupyter菜單中選擇kernel-> restart來完成它。 –