安装itertools时出现错误

时间:2019-08-15 05:39:10

标签: python-3.x windows

在Windows 8中安装itertools时出现错误。

C:> pip安装itertools 收集itertools   错误:找不到满足itertools要求的版本(来自版本:无) 错误:找不到与itertools匹配的分布

它应该安装itertools软件包

2 个答案:

答案 0 :(得分:0)

itertools是Python标准库中包含的模块之一,因此无需安装:https://docs.python.org/3.8/library/itertools.html#module-itertools

答案 1 :(得分:0)

您可以尝试从itertools而不是itertools导入软件包。

例如:-

要使用属于itertools的chain程序包的from_iterable函数, 您可以将其编写为:-

from itertools import chain as ch

然后将其用作:-

ch.from_iterable()