We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following the contributing to xarray guidelines I tried to create the xarray-test environment as follows:
# Create and activate the build environment conda env create -f ci/requirements/py36.yml
Creates conda environment, such that conda activate xarray-tests can be used to activate it.
conda activate xarray-tests
The creation of the conda environment fails, indicating ResolvePackageNotFound error:
ResolvePackageNotFound
Collecting package metadata: done Solving environment: failed ResolvePackageNotFound: - pynio - cdms2
After some searching I tried to first create the conda environment and subsequently updating it
conda env update -f ci/requirements/py36.yml
but this resulted in the same error:
xr.show_versions()
Doesn't make sense for this issue, does it?
The text was updated successfully, but these errors were encountered:
Those packages don't exist on Windows. You need to use py37-windows.yml instead. I'll update the documentation to clarify.
py37-windows.yml
Sorry, something went wrong.
Thanks for the fast response @crusaderky!
Successfully merging a pull request may close this issue.
MCVE Code Sample
Following the contributing to xarray guidelines I tried to create the xarray-test environment as follows:
# Create and activate the build environment conda env create -f ci/requirements/py36.yml
Expected Output
Creates conda environment, such that
conda activate xarray-tests
can be used to activate it.Problem Description
The creation of the conda environment fails, indicating
ResolvePackageNotFound
error:Collecting package metadata: done Solving environment: failed ResolvePackageNotFound: - pynio - cdms2
After some searching I tried to first create the conda environment and subsequently updating it
but this resulted in the same error:
Collecting package metadata: done Solving environment: failed ResolvePackageNotFound: - pynio - cdms2
Output of
xr.show_versions()
Doesn't make sense for this issue, does it?
The text was updated successfully, but these errors were encountered: