python2 安装 tensorflow 遇到问题

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lionel_fengj/article/details/82777953

使用pip install --upgrade tensorflow出现以下问题:

这是因为安装 grpcio 出错了,解决方案:

pip install --no-cache-dir --only-binary :all: grpcio==1.10.1
pip install tensorflow==1.8.0

猜你喜欢

转载自blog.csdn.net/lionel_fengj/article/details/82777953