ImportError: cannot import name ‘Protocol‘ from ‘typing‘解决方案

在运行tensorboard时可能会遇到如下报错

ImportError: cannot import name 'Protocol' from 'typing' (/home/bit/Programs/anaconda3/envs/tf1.15/lib/python3.7/typing.py)
...
中间内容省略
...
    from typing_extensions import Protocol  # type: ignore

解决方法也很简单,安装typing_extensions即可【参考自这里】

pip install typing_extensions

再次运行tensorboard即可。

你可能感兴趣的:(tensorflow,tensorflow,tensorboard,typing,Protocal)