解决typeError: init() got an unexpected keyword argument ‘serialized_options’

解决typeError: init() got an unexpected keyword argument ‘serialized_options’

问题描述:运行python文件时,手贱捣鼓了一下Tensorboard,出现了上面的问题
解决:protobuf版本跟之前不一致

pip instal -U protobuf

出现新的问题:protobuf requires Python ‘>=3.7‘ but the running Python is 3.6.5 ,并且pip一直升级无法成功,出现Requirement already up-to-date问题
运行

pip-V

发现还是之前的老版本

解决:删掉site-packages中油有关pip-x.x.x.dist-info的文件
重新pip install --upgrade pip

你可能感兴趣的:(tensorflow,python,pycharm,开发语言)