-
Notifications
You must be signed in to change notification settings - Fork 983
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
error: Distribution kaleido==0.2.1.post1 @ registry+https://pypi.org/simple
can't be installed because it doesn't have a source distribution or wheel for the current platform
#10464
Comments
The problem is that kaleido 0.2.1 and 0.2.1.post1 are technically different versions, and the latter has only a
or banning |
Thanks @konstin .
The same error occurred with this (note it's
How can I do this? EDIT: I tried
But then got a weird error:
sklearn 0.0.post12 is ancient!
Seems to be working, but it's taking ages to install - far longer than both |
With this input: [project]
name = "foo"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"pycaret",
]
[tool.uv]
constraint-dependencies = ["kaleido!=0.2.1.post1"] I get a resolution that does not contain
This usually happens when the cache and the install directory aren't on the same drive, but should not have a massive impact. Usually, something really is some package not having a wheel for the target environment, and that build takes a long time. You can get more information running with |
To confirm, you mean edit the toml then
Turns out it was because I was working within Google Drive, so it was the annoying upload/download causing the delay. |
Inside of [project]
name = "foo"
version = "0.1.0"
requires-python = ">=3.11"
[tool.uv]
constraint-dependencies = ["kaleido!=0.2.1.post1"] and run
I get a lockfile with sklearn-compat 0.1.3, but no |
New to uv, sorry if PEBKAC.
I'm trying to install pycaret (
uv add pycaret
) to a new project on Windows, Python 3.11.Get this error:
The repo (https://pypi.org/simple/kaleido/) has:
So, no
kaleido-0.2.1.post1
for Windows.Checking the PyPi website, there is https://pypi.org/project/kaleido/0.2.1.post1/
Although that applies to the manylinux version.
Yet using
conda
, it works fine; it installs:Is there a way for uv to use the compatible version like conda does?
The text was updated successfully, but these errors were encountered: