-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
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
Packages that are only available as .conda
artifacts are not reliably found
#2172
Comments
Did you try conda? A useful debugging data point and a possible workaround. |
Yes, did that two minutes ago in a Python 3.9 env created with
with
|
Works fine for me
Maybe that new version of numpy dropped python 3.9? |
|
You appear to be on osx; I'm on Windows
No, this is the link to the My
He has
Our My colleague is on Maybe I need to update my conda and base environment Python versions? EDIT: Updating my conda with |
If you could reproduce this in a Docker container that would be great |
Interestingly I can create the environments on my personal computer with I suspect the Python version of the base environment, because the 3.7 on my work PC is quite old. |
I just realized that this wasn’t helpful because you can’t build Windows Docker containers (right?) |
I don’t think updating the base Python will have any effect. As long as you can run a recent version of Mamba you should be able to install Try removing most channels from your condarc (eg keep only conda-forge) |
0.27.0 is the latest mamba version that runs with a Python 3.7 base environment. Since this would create problems eventually, I decided to upgrade my base environment - by removing all envs, uninstalling miniconda and then installing the current miniconda. And it helped: With a current miniconda running a Python 3.9 base, and |
I tried
mamba create -n testenv -c conda-forge "sunode==0.4.0"
and gotnothing provides numpy >=1.23.5,<2.0a0 needed by sunode-0.4.0-py310hd5a9e38_1
.This prompted me to try
mamba create -n testenv -c conda-forge "numpy==1.23.5"
resulting innothing provides requested numpy 1.23.5
.My OS is Windows x64 and I did this with latest
mamba v0.27.0
.Earlier today I had similar problems with
pymc==5.0.0
andsunode==0.4.0
and got them resolved by updating the feedstocks to release not only.conda
artifacts (the new default), but also.tar.bz2
artifacts as was the default until a month or so ago.Strangely enough, this fixed the install of
pymc==5.0.0, sunode==0.4.0, numpy==1.23.5
for my colleague (also on Windows).Since NumPy 1.23.5 is currently only listed with
.conda
artifacts, and it worked for my colleague but not for me,this falsifies my theory that it was a matter of having
.tar.bz2
artifacts.The text was updated successfully, but these errors were encountered: