似乎El Capitan的系统完整性保护阻止我遵循在OSX上运行Tensorflow的说明。
我已关注the installation guide,但最终安装步骤失败:
sudo pip install --upgrade $TF_BINARY_URL
失败了:
Uninstalling numpy-1.8.0rc1:
...
OSError: [Errno 1] Operation not permitted
我已经设法通过忽略6的安装来解决这个问题:
sudo pip install --upgrade $TF_BINARY_URL --ignore-installed six
但现在测试我的安装不起作用:
$ python
Python 2.7.10 (default, Oct 23 2015, 19:19:21)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
RuntimeError: module compiled against API version 0xa but this version of numpy is 0x9
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
....
ImportError: numpy.core.multiarray failed to import
答案 0 :(得分:5)
我设法通过使用easy_install升级numpy来实现它。这看起来像是一个令人讨厌的混乱所以我喜欢听到更好的解决方案,或者让别人向我解释为什么这很好。
该命令适用于那些玩游戏的人:
sudo easy_install numpy