成功解决To fix this you could try to: 1. loosen the range of package versions you‘ve specified ​​​​​​​

简介: 成功解决To fix this you could try to: 1. loosen the range of package versions you‘ve specified ​​​​​​​


目录

解决问题

解决思路

解决方法


解决问题

he conflict is caused by:

tensorflow 2.5.0 depends on keras—nightly=2.5.0.dev

tensorflow 2.4.2 depends on tensorflow—estimator<2.5.0 and >=2.4.0

tensorflow 2.4.1 depends on tensorflow—estimator<2.5.0 and >=2.4.0

tensorflow 2.4.0 depends on tensorflow—estimator<2.5.0 and >=2.4.0rc0

tensorflow 2.3.3 depends on tensorflow—estimator<2.4.0 and >=2.3.0

tensorflow 2.3.2 depends on tensorflow—estimator<2.4.0 and >=2.3.0

tensorflow 2.3.1 depends on tensorflow—estimator<2.4.0 and >=2.3.0

tensorflow 2.3.0 depends on tensorflow—estimator<2.4.0 and >=2.3.0

tensorflow 2.2.3 depends on tensorflow—estimator<2.3.0 and >=2.2.0

tensorflow 2.2.2 depends on tensorflow—estimator<2.3.0 and >=2.2.0

tensorflow 2.2.1 depends on tensorflow—estimator<2.3.0 and >=2.2.0

tensorflow 2.2.0 depends on tensorflow—estimator<2.3.0 and >=2.2.0

To fix this you could try to:

1. loosen the range of package versions you've specified

2. remove package versions to allow pip attempt to solve the dependency conflict

解决思路

要解决这个问题,你可以尝试:

1. 放宽您指定的包版本的范围

2. 删除包版本以允许PIP尝试解决依赖项冲突

解决方法

参考文章成功解决WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after co


相关文章
“Could not find suitable distribution for Requirement.parse(‘XXXX‘)”的问题
“Could not find suitable distribution for Requirement.parse(‘XXXX‘)”的问题
329 0
|
2月前
|
Python
ERROR: Could not find a version that satisfies the requirement thop (from versions: none) ERROR: No
这篇文章介绍了在尝试安装`thop`包时遇到的"No matching distribution found"错误,并提供了通过直接从GitHub源码安装`thop`的解决方法。
ERROR: Could not find a version that satisfies the requirement thop (from versions: none) ERROR: No
|
Ubuntu Unix Linux
成功解决ERROR: Unable to find the development tool `cc` in your path; please make sure that you have the
成功解决ERROR: Unable to find the development tool `cc` in your path; please make sure that you have the
成功解决ERROR: Unable to find the development tool `cc` in your path; please make sure that you have the
|
3月前
|
Linux 开发工具
You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofi
linux配置环境变量操作失误出现:/usr/libexec/grepconf.sh: line 5: grep: command not found 的解决办法
71 2
|
11月前
|
计算机视觉 Python
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)
|
Python
Your requirements could not be resolved to an installable set of packages
Your requirements could not be resolved to an installable set of packages
7713 1
|
TensorFlow 算法框架/工具
成功解决To fix this you could try to: 1. loosen the range of package versions you‘ve specified ​​​​​​​
成功解决To fix this you could try to: 1. loosen the range of package versions you‘ve specified ​​​​​​​
成功解决To fix this you could try to: 1. loosen the range of package versions you‘ve specified ​​​​​​​
|
Python
解决办法:RuntimeWarning: numpy.dtype size changed, may indicate binary incompatibility. Expected 96
解决办法:RuntimeWarning: numpy.dtype size changed, may indicate binary incompatibility. Expected 96
529 0
成功解决ValueError: numpy.ufunc size changed, may indicate binary incompatibility. Expected 216 from C h
成功解决ValueError: numpy.ufunc size changed, may indicate binary incompatibility. Expected 216 from C h
成功解决ValueError: numpy.ufunc size changed, may indicate binary incompatibility. Expected 216 from C h
|
算法
On the Correct and Complete Enumeration of the Core Search Space
在之前的文章中我们讨论了基于graph的DP-based算法,来解决join ordering的枚举问题。 这些DP算法通过join predicate描述的连通性,解决了枚举可能的表组合问题,但join graph本身(即使hypergraph)是无法完整的描述join语义的,因为连通边本身无法描述不同类型的join语义,例如left outer join/semi join/anti join...,因此即使找到了所谓的csg-cmp-pair,也不一定是有效的plan。 这篇paper讨论的就是这个问题,当枚举出一个csg-cmp-pair (S1 o S2),如何判断这是有效的join
438 0
On the Correct and Complete Enumeration of the Core Search Space