F。irst, open a DOS prompt and admin rights. Then, go to your Anaconda2Scripts folder. Then, type in:
conda update conda
and allow all updates. One of the updates should be menuinst.
Then, change to the Anaconda2Lib directory, and type in the following command:
..python _nsis.py mkmenus
Wait for this to complete, then check your Start menu for the new shortcuts.
原地址如下:
Anaconda Python installation error
解決的了,問題是需要進行一個編碼轉換:
可以參考下面的這個鏈接帖子。
http://www.cnblogs.com/CasonChan/p/4669799.html
如果不成功,裡面的內容可以換一下。
修改這裡之後 再進行以下幾步操作,最後就成功了
「 SHGetKnownFolderPath 」 not found 錯誤解決方法,經過一下午的嘗試(XP系統),結論如下:1、Anaconda2-4.0.0-Windows-x86.exe 安裝沒有錯誤,錯誤主要集中在Anaconda2-4.0.0以上版本2、研究後認為,此類錯誤主要都是mistune模塊引起,Anaconda2.4.0使用的是mistune V1.3.2Anaconda2-4.2.0-Windows-x86.exe 使用的是mistune V1.4.0 兩者在代碼上有很大不同,見各自安裝後的目錄 C:Anaconda2Libsite-packagesmenuinst3、對於AttributeError: function "SHGetKnownFolderPath" not found 的錯誤,主要是因為Anaconda2-4.2.0的mistune V1.4.0使用的 SHGetKnownFolderPath 函數不支持Windows XP,見SHGetKnownFolderPath function (Windows)4、最後沒辦法......我放了大招......將menuinst 1.4版本裡面的文件刪除,用1.3.2版本文件替換,然後再python _nsis.py mkmenus 問題就這樣神奇的解決的了!
以下內容為引用 @gleefeng貼出的原地址內容,可以解決(如下截圖)
「First, open a DOS prompt and admin rights. Then, go to your Anaconda2Scripts folder. Then, type in:
conda update conda
and allow all updates. One of the updates should be menuinst.
Then, change to the Anaconda2Lib directory, and type in the following command:
..python _nsis.py mkmenus
Wait for this to complete, then check your Start menu for the new shortcuts.「