【发布时间】:2016-02-08 14:06:06
【问题描述】:
我无法通过 brew 为 python3 安装 numpy。
我输入:
brew install numpy --with-python3
那么python2就可以了
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
Python 3.4.0 (v3.4.0:04f714765c13, Mar 15 2014, 23:02:41)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'numpy'
>>>
如何使它适用于 python3 ?
【问题讨论】:
标签: python python-3.x numpy homebrew