点击查看代码
ERROR:root:Internal Python error in the inspect module. Below is the traceback from this internal error.
查了网上的资料,现存的有两种解决策略。
第一种:多刷新几次切换服务器【我尝试无果】
第二种:tensorflow版本问题,我查看确实我安装了tensorflow2.0,重装tensorflow1.15.0仍然报错。新建环境重装仍然报错。
在代码头修改为:
点击查看代码
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
结果仍然报错【于我问题无果】
最后发现,问题核心主要在这里:
需要重装包protobuf,使用镜像安装:
pip install protobuf==3.19.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
成功解决!
标签:重装,protobuf,报错,tf,tensorflow,安装 From: https://www.cnblogs.com/zzzccj/p/16934466.html