我使用的是 Python 3.12,并且正在尝试安装最新版本 (1.15.1) 的 TensorFlow 数据验证。然而,在安装时,我遇到了以下错误:
ERROR: Could not find a version that satisfies the requirement tensorflow-data-validation (from versions: none)
ERROR: No matching distribution found for tensorflow-data-validation
tensorflow官方页面提到Python版本要求>3.9,在我的环境中满足。我该如何解决这个问题?
我的环境如下:
Python 3.12
不正式支持 TensorFlow 数据验证。它与 python 版本 3.9 至 3.11 兼容。要安装
tensorflow-data-validation==1.15.1
,请考虑使用
Python 3.10
或
Python 3.11
。检查此文档以获取兼容的Python版本。