1
DH 2013-05-15 00:52:54 +08:00 1
Spyder用的python可能不是easy install用的python。你看看python自己的idl用的python版本和路径,在Spyder里面设置成同样的就好了。
|
3
xuelang 2013-05-15 14:47:36 +08:00
好像easy_install已经被pip代替了,用pip吧。
Why use pip over easy_install?: http://stackoverflow.com/questions/3220404/why-use-pip-over-easy-install |
5
Hualin 2013-05-16 09:12:25 +08:00
在 mac 上 spyder 有几种安装方式:
1. 通过 macports 安装; 2. 下载独立的 spyder.app; 3. 通过 pip install 安装; 都行。 我的 spyder 是用方法 1 安装的,刚刚使用 pip install panda,然后打开 spyder,在它自带的 python 解释器里是可以引入 panda 的。 |
6
Hualin 2013-05-16 09:14:09 +08:00 1
你既然有了 easy_install, 那么就在命令行下执行 easy_install pip;pip 就安装了,然后你就可以在命令行下用了。
|