pixi install
fails with "No module named 'numpy.distutils'"
#2360
Unanswered
NickleDave
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I am unable to run
pixi install
with my package, it fails with the following traceback:If I instead do
pixi install -vvv
I can see that it looks like the install process tries to build a wheel for numpy. A bit surprising since I am pretty sure the wheels exist on pypi.Click to expand snippet of `-vvv` output
Here's an excerpt from that output:I'm really not sure what else to do to troubleshoot this.
Please find my pyproject.toml manifest here, if it helps:
https://github.com/vocalpy/vocalpy/tree/test-pixi-install
Doing
git clone
followed bypixi install
on a linux system should reproduce the issue.For context, I am trying to switch to pixi so that I can generate oracle test data for this library from another package -- I want to do this in an env with a lockfile so I can avoid dealing with docker, thinking this will be "good enough" replicability.
So all the commented out stuff in the pyproject.toml is from me trying to do that with a pixi feature, and then going through a process of elimination where I finally realized the source of this error is my actual project, and not the pixi feature I was adding.
Beta Was this translation helpful? Give feedback.
All reactions