ImportError: cannot import name ‘OrderedDict‘ from ‘typing‘ (/hpcfiles/users/zk.111/anaconda3

 import tensorflow as tf 这个语句出错,很离谱。报错原因如上图。之前能跑的程序也都跑不了了...

解决方法是安装typing的补充包,代码如下:

pip install typing_extensions


然后对应图片上显示的路径找到这个function_type.py

把原始的

from typing import OrderedDict

改成

from typing_extensions import OrderedDict

就不报错了

你可能感兴趣的:(tensorflow,python,人工智能)