2016-06-10 74 views
0

我知道這個問題在過去一直被問到,但是找不到一個令人滿意的解決方案。在ipython上安裝python 3內核

我想在IPython的 添加一個Python 3內核這裏的「官」的說明似乎很簡單 https://ipython.readthedocs.io/en/latest/install/kernel_install.html

但是我收到以下錯誤:

C:\Users\Vincent>python3 -m pip install ipykernel 'python3' is not recognized as an internal or external command, operable program or batch file.

這是在Windows系統上。

任何想法什麼是錯的?

+0

你能更具體和發佈你得到的錯誤? – Alessandro

+0

看過您提到的網站後,我傾向於說您正在遵循Linux環境而非Windows的安裝說明?一些示例命令前面有一個'$',它是linux/unix命令提示符? – Dave

+0

Windows無法找到您的python 3可執行文件。它具有不同的名稱,或者它位於不在系統$ PATH中的目錄中。這裏是關於在windows下安裝和使用python的官方文檔。 https://docs.python.org/3/using/windows.html –

回答

0

找到解決方案: windows使用命令py -3而不是上面提到的文檔中建議的python3;

對不起,如果這是絕對明顯的所有..