logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

import tensorflow as tf 时报错ImportError: cannot import name ‘OrderedDict‘ from ‘typing‘

跟随图片上的路径找到function_type.py打开, 把从typing中import的OrderedDict删除,加上from typing_extensions import OrderedDict。如果没有安装typing_extensions,就在控制台pip install typing_extensions一下。先用python的IDLE去import一下,然后就能得到一个报错。

文章图片
#tensorflow#人工智能#python
到底了