1

当我在终端中输入“python”时,我得到了这个:

Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49) 
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 

我不确定这是否意味着 Ananconda 已成功安装?

4

1 回答 1

1

要安装 Anaconda-1.9.0-MacOSX-x86_64.sh,打开终端并运行

/bin/bash Anaconda-1.9.0-MacOSX-x86_64.sh

安装程序将询问一系列问题并将其安装在您确定的前缀中。完成后,关闭终端并再次打开它。(这是为了让您的终端选择指向前缀/bin 的新 PATH。)

安装后,您应该在终端中看到类似以下内容:

$ python
Python 2.7.6 |Anaconda 1.8.0 (x86_64)| (default, Nov 11 2013, 10:49:09)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 
于 2014-01-10T02:56:15.717 回答