【亲测解决】AttributeError: module ‘tensorflow‘ has no attribute ‘__version__‘
·
今天在安装使用bert-as-service
时报错,报错信息如下:
AttributeError: module 'tensorflow' has no attribute '__version__'
一看,懵逼了,啥,tensorflow
么有__version__
方法,打开Python
解释器看下,
import tensorflow
tensorflow.__version__
我去,还真没。。。一顿狂搜也没有解决办法啊,
1、先检查命令
@评论区朋友说,出现这种情况也有可能是把__version__
敲少了一个_
,在此补充~
2、忽然想起之前做模型压缩弄了tensorflow
源码编译,然后执行下面两行代码解决问题:
pip uninstall tensorflow==1.13.1
pip install tensorflow==1.13.1
等待安装完成后,校验OK,解决了~
重装大法好感谢pip
更多推荐
已为社区贡献8条内容
所有评论(0)