无法安装tensorflow 文本~=2.11.0

nnsrf1az  于 2022-12-04  发布在  其他
关注(0)|答案(3)|浏览(594)

我收到了一个警告

warnings.warn(
No local packages or working download links found for tensorflow-text~=2.11.0
error: Could not find suitable distribution for Requirement.parse('tensorflow-text~=2.11.0')

如果运行pip install 'tensorflow-text~=2.11.0',则会得到:

ERROR: Could not find a version that satisfies the requirement tensorflow-text~=2.11.0 (from versions: 2.8.1, 2.8.2, 2.9.0rc0, 2.9.0rc1, 2.9.0, 2.10.0b2, 2.10.0rc0, 2.10.0)
ERROR: No matching distribution found for tensorflow-text~=2.11.0
  • pypi上提供tensorflow 文本2.11.0 *

如果我运行pip install tensorflow-text,它会安装tensorflow-text 2.10.0并将整个tensorflow降级到2.10.0
版本信息:
1.操作系统:Windows 10
1.使用环境:孔达(微型孔达3)

  1. Python语言:3.10.8
    1.tensorflow :2.11
    我试过皮普和康达锻造
juzqafwq

juzqafwq1#

根据他们的说明,他们已经放弃了使用v2.11.0为Windows构建。因此,您需要从源代码构建或寻求第三方构建。

cbeh67ev

cbeh67ev2#

我觉得你应该跑

pip install tensorflow-text==2.11.0

不带任何引号或短划线

noj0wjuj

noj0wjuj3#

直接安装,tensorflow-text最新版本为2.11.0_pypi

pip install tensorflow-text

相关问题