首页 > 其他 > 详细

TensorFlow tf.estimator package not installed

时间:2018-11-20 19:12:30      阅读:378      评论:0      收藏:0      [点我收藏+]
在使用 pip install tensorflow 命令安装TensorFlow,在成功安装后,在 import tensorflow是出现 "tf.estimator package not installed" 解决方法如下: 1、确保 pandas, numpy, matplotlib 这些依赖包已经被正确安装 2、使用 pip install -U xxx --no-cache-dir (不使用缓存文件,重新网上下载安装) 3、如果更新相关依赖包后还没解决话的,就需要将 pandas, numpy, matplotlib这三个依赖包一个一个import,查看是否报错(PS:我觉得肯定是哪个包出现了问题,才会导致 “tf.estimator package not installed”)

以下是我在 import pandas 出现的错误,导致"tf.estimator package not installed":

技术分享图片
经过Google后,使用命令"conda remove bottleneck","conda install bottleneck",解决错误后就正常 import tensorflow 了。也可以参考 Github上的issues

TensorFlow tf.estimator package not installed

原文:http://blog.51cto.com/6874309/2319447

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!