Good evening everyone,
I have an issue with scikit-image while installing this package I installed python 3.11 on windows 11
pip install scikit-image
I got these issues as below in the screenshot got
previous issue
EDIT:
I installed Microsoft C++ 14 but I got another issue at the below screenshot enter image description here
The issue is that no wheels are available for scikit-image for Python 3.11
Python libraries can have code that is not written in Python (like C, C++, FORTRAN, Rust, ...) and in order to use those, you need to compile that code for your version of Python, your OS and CPU architecture.
Fortunately, Python offers a packaging mechanism known as wheel to provide that precompiled code. Package maintainers can generate those wheels to avoid the end user having to compile it from sources.
In your case, as Python 3.11 just got out (beginning of the week), the maintainers of scikit-image
didn't have the time to package the wheel and pip tries to install it from sources (hence the message asking you to install Microsoft Visual C++ 14).
Your options are:
scikit-image
provides a wheel for Python 3.11 (I would recommend that)If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With