平台: Windows 10 Pro 20H2、Python 3.8.7
我需要安装image-match
模块,但当安装到所需的scikit-image
模块时,我收到错误:
Running setup.py install for scikit-image ... error
ERROR: Command errored out with exit status 1:
WARNING: The wheel package is not available.
在网上冲浪时,我发现用于windows的scikit-image
模块轮不可用。我尝试用二进制.whl文件安装scikit-image
。看起来模块已经安装好了,我再次尝试安装image-match
。现在我收到了这样的信息:
Building wheel for image-match (setup.py) ... done
Created wheel for image-match: filename=image_match-1.1.2-py3-none-any.whl size=21230 sha256=bb2a55e18dac36ab10056523f66383756fac637eafe4f12d4e12df9a3da3ad8c
Stored in directory: c:\users\user\appdata\local\pip\cache\wheels\70\62\40\3511b893ee0655b25176450c3b0405caf4ded0f44927de3ebe
Building wheel for scikit-image (setup.py) ... error
ERROR: Command errored out with exit status 1:
Partial import of skimage during the build process.
我的Python不是很好,那么我做错了什么呢?
发布于 2021-03-30 03:38:51
直接从Github Link安装由于某种原因,PyPI有一个较旧版本的分支。使用此命令pip install git+https://github.com/EdjoLabs/image-match
https://stackoverflow.com/questions/66859797
复制相似问题