Nick9one1
Nick9one1

Reputation: 11

problem installing pip install scikit-image==0.21.0

I'm getting an error when trying to install scikit-image on win11 x64. I have installed VS build tools and I'm running Python 3.10.0 (needs to be this version).

C:\Rope>pip install scikit-image==0.21.0

Collecting scikit-image==0.21.0 Using cached scikit_image-0.21.0.tar.gz (22.7 MB) Installing build dependencies … done Getting requirements to build wheel … done Preparing metadata (pyproject.toml) … error error: subprocess-exited-with-error

× Preparing metadata (pyproject.toml) did not run successfully. │ exit code: 1 ╰─> [27 lines of output]

× Encountered error while generating package metadata. ╰─> See above for output.

note: This is an issue with the package mentioned above, not pip. hint: See above for details.`

Upvotes: 0

Views: 501

Answers (1)

Jacoblightning3
Jacoblightning3

Reputation: 63

You have the x86 version of Python installed but you need the x86_64 version as it says: Need Python for x86_64, but found x86. It should work after you install the x86_64 version.

Upvotes: 1

Related Questions