我是新来的;经过彻底搜索后询问。
我按照tensorflow.org上提供的安装说明进行操作。操作系统:Win10,Python:3.6.7,在virtualenv中运行
Spaces:4
使用以下命令安装tensorflow软件包:
(venv) C:\Program Files\Python36>pip list
Package Version
---------- -------
pip 18.1
setuptools 40.6.2
virtualenv 16.1.0
wheel 0.32.3
一切似乎都已成功安装。
验证后,收到以下错误消息:
(venv) C:\Program Files\Python36>pip install --upgrade tensorflow
(venv) C:\Program Files\Python36>python -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
Traceback (most recent call last): File "<string>", line 1, in
<module>
我应该如何解决?
非常感谢 阿尔萨尔