我有一个使用Numpy的Python 3.2系统,但我让Homebrew升级到Python 3.3,所以我必须再次安装所有软件包.对于使用this very large output的pip3 install numpy,这个失败了.
你能建议解决吗?
或者,如何恢复旧的工作安装?
解决方法:
我在python3.3下成功安装了Numpy而没有pip:
git clone https://github.com/numpy/numpy.git
python3 setup.py build
python3 setup.py install
另一种选择,虽然不是首选,但是通过Homebrew进行Python降级.你可以来回切换:
brew switch python3 <version>