package-a
into that environment. You decide to specify version 2.0 of package-a
.
The only problem is, package-a
2.0 requires Python 3.10 or later (>=3.10
) and doesn’t have any backwards compatibility built into its version requirements.
If you try to install python
and package-a
into an environment with these exact requirements:
package-a
requires python
greater than or equal to version 3.10, but something is blocking that version from being installed.
package-a
in a different environment?”
package-a
along with python
is leading to solver errors, try only giving conda the name package-a
and no version number. This will give conda’s solver more options to evaluate.
package-a
, conda will attempt to find the latest possible version that works with Python 3.9.
package-a
’s version. In that case, try specifying a version range for package-a
.
<
, <=
, >
, or >=
), make sure you surround that part of the command in quotes.package-a
, conda will attempt to find a version older than 2.0 that works with Python 3.9.