每当我尝试运行 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.
相关文章