今天在使用python2.7时,报了一个numpy的错误,以为不能用了
就尝试安装一下anaconda ,遇到一个一问题
I had the same problem today. I did the following to get this fixed:
First, open a DOS prompt and admin rights. Then, go to your Anaconda2\Scripts folder. Then, type in:
conda update conda
and allow all updates. One of the updates should be menuinst.
Then, change to the Anaconda2\Lib 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.
Steve
201605补充
之前在机器上安装有python的环境,现在就是安装一些anaconda的包的一些用法
在 python 中可以使用
pip install 包名
安装包
在anaconda下可以使用
conda install 包名
安装所要的包
使用时可以是
pip install --help
conda install --help
查找帮助
参考
http://stackoverflow.com/questions/34780267/anaconda-python-installation-error
本文介绍了如何解决Anaconda安装过程中出现的问题,包括更新conda、创建菜单项等步骤,并提供了使用pip和conda安装Python包的方法。
8465

被折叠的 条评论
为什么被折叠?



