在安装tensorflow的时候, 出现下面的错误.
1. 安装windows redistribute
2. 安装windows补丁
都不好使. 最后发现自己的CPU是Pentium的E5800. 这款CPU因为不支持AVX(高级向量扩展), 所以tensorflow不支持. 真是坑爹啊.
AVX说明: https://en.wikipedia.org/wiki/Advanced_Vector_Extensions
得到结论: tensorflow的硬件要求: 64位系统 + AVX支持.
Traceback (most recent call last):
File "site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18,
in swig_import_helper
File "importlib\__init__.py", line 126, in import_module
File "<frozen importlib._bootstrap>", line 994, in _gcd_import
File "<frozen importlib._bootstrap>", line 971, in _find_and_load
File "<frozen importlib._bootstrap>", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'tensorflow.python._pywrap_tensorflow_inter
nal'
During handling of the above excepti