【发布时间】:2022-07-04 23:26:33
【问题描述】:
菜鸟问题。感谢您对我的包容。
我的计算机上安装了 Tensorflow 2.4.1,但我需要 2.4.0 版本才能与特定项目兼容。
我尝试了以下但没有成功:
conda install tensorflow==2.4.0
conda install -c conda-forge tensorflow==2.4.0
它会这样做一段时间,直到 jupyter notebook 告诉我它找不到我需要的东西
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment:
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
- tensorflow==2.4.0 -> python[version='3.6.*|3.7.*|3.8.*']
- tensorflow==2.4.0 -> python[version='>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0']
Your python: python=3.9
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
请帮忙。
【问题讨论】:
标签: tensorflow python-3.9 junit-jupiter