I get the following error whenever I try to run conda install tensorflow(每当我尝试运行 conda install tensorflow 时都会出现以下错误)
问题描述
这是错误:
解决环境:失败
UnsatisfiableError:发现以下规范存在冲突:- numba -> numpy[版本='>=1.14,<1.15.0a0']-张量流使用conda info"查看每个包的依赖关系.
UnsatisfiableError: The following specifications were found to be in conflict: - numba -> numpy[version='>=1.14,<1.15.0a0'] - tensorflow Use "conda info " to see the dependencies for each package.
推荐答案
你必须运行 conda info tensorflow 和 conda info numba 来查看每个包的每个依赖项然后你必须安装像 conda install package=version 这样的软件包来解决问题.
You have to run the conda info tensorflow and conda info numba to see each dependencies for each package and then you have to install those package like conda install package=version to fix the problem.
这篇关于每当我尝试运行 conda install tensorflow 时都会出现以下错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:每当我尝试运行 conda install tensorflow 时都会出现以
基础教程推荐
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
