Python 官方文档:入门教程 => 点击学习
在import Tensorflow as tf 时报错no mould tensorflow,自然而然想到pip一下,但是pip一直显示成功,并且不会报任何错 1.报错:导入import tenso
在import Tensorflow as tf 时报错no mould tensorflow,自然而然想到pip一下,但是pip一直显示成功,并且不会报任何错
由于我下载的是python3.7版本,tensorflow可能需要下载补丁包,故在网上查询解决方案:
pip install typing_extensions
在下载后,将该目录下的function_type.py中的
from typing import Any,Callable,Dict, Mapping, Optional, Sequence, Tuple
改为
from typing_extensions import Any,Callable,Dict, Mapping, Optional, Sequence, Tuple
此时依旧会报错cannot import name ‘Callable‘ from ‘typing_extensions‘
说明typing_extensions里面没有Callable,而typing中没有OrderedDict。
只能选择“各取所需”,组合一下试试
from typing import Any,Callable,Dict, Mapping, Optional, Sequence, Tuplefrom typing_extensions import OrderedDict
这里前提是已经pip install typing_extensions了,也就是两个:typing_extensions和typing都存在的情况下,改写。
来源地址:https://blog.csdn.net/m0_64669072/article/details/128271790
--结束END--
本文标题: 【已解决cannot import name ‘OrderedDict‘ from ‘typing‘】
本文链接: https://lsjlt.com/news/401216.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0