OSX通过brew为python3安装numpy

时间:2016-02-08 14:06:06

标签: python python-3.x numpy homebrew

我无法通过brew为python3安装numpy。

我输入:

"C:/Program Files/RStudio/bin/pandoc/pandoc" +RTS -K512m -RTS hallo.utf8.md --to docx --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash-implicit_figures --filter ./pandoc-word-pagebreak
    --output hallo.docx --highlight-style tango

然后它对于python2

是好的
brew install numpy --with-python3

但仍未找到python3

Python 2.7.6 (default, Sep  9 2014, 15:04:36) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>>

如何让它适用于python3?

2 个答案:

答案 0 :(得分:6)

安装它的正确方法是:

pip3 install numpy

显然,你需要先安装python3和pip。我测试和工作没有任何问题。

答案 1 :(得分:1)

Homebrew的问题在于它只能看到系统的python和它自己安装的python。所以你必须首先通过brew安装python3,然后使用--with-python3选项。