Using cached pycparser-2.21-py2.py3-none-any.whl (118 kB) Building wheels for collected packages: image-match, scikit-image, cairosvg, cairocffi Building wheel for image-match (setup.py) ... error error: subprocess-exited-with-error × python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> [66 lines of output] /home/zh242653915/桌面/实验五/bitright-master/env/lib/python3.9/site-packages/setuptools/installer.py:27: SetuptoolsDeprecationWarning: setuptools.installer is deprecated. Requirements should be satisfied by a PEP 517 installer. warnings.warn( running bdist_wheel running build running build_py creating build creating build/lib creating build/lib/image_match copying image_match/goldberg.py -> build/lib/image_match copying image_match/elasticsearch_driver.py -> build/lib/image_match copying image_match/signature_database_base.py -> build/lib/image_match copying image_match/mongodb_driver.py -> build/li
时间: 2024-02-28 07:56:44 浏览: 203
根据错误提示,这个问题出现在image-match包的构建过程中。可能的原因是缺少构建image-match所需的依赖项。
你可以尝试先安装image-match的依赖项,然后再安装image-match。可以使用以下命令安装image-match的依赖项:
```
pip install numpy scipy matplotlib scikit-image pillow
```
如果安装依赖项后仍然无法构建image-match,可以尝试升级pip和setuptools:
```
pip install --upgrade pip setuptools
```
如果还是无法解决问题,可能需要检查你的Python环境中是否缺少其他必要的依赖项。
相关问题
Using cached contrib-0.3.0-py3-none-any.whl 什么意思
这句话是在使用 pip 安装 Jupyter Contrib Nbextensions 时输出的信息。
"Using cached" 表示 pip 已经在本地缓存中找到了 contrib-0.3.0-py3-none-any.whl 这个文件,不需要重新下载。
".whl" 是 Python 的二进制包格式,表示这是一个可安装的 Python 包。
"py3-none-any" 表示该包适用于 Python 3.x,且不包含特定的 CPU 架构。
因此,"Using cached contrib-0.3.0-py3-none-any.whl" 的意思是使用缓存中的 contrib-0.3.0-py3-none-any.whl 这个 Python 包文件来安装 Jupyter Contrib Nbextensions。
Collecting Microsoft Using cached microsoft-0.1.2-py2.py3-none-any.whl (1.3 kB) ERROR: Could not find a version that satisfies the requirement Visual (from versions: none) ERROR: No matching distribution found for Visual
这个错误提示是因为在你的代码中需要使用名为"Visual"的包,但是没有找到对应的版本。建议你检查一下代码中是否拼写错误或者这个包是否被正确安装。如果你确定这个包是需要的,可以尝试在命令行中使用pip命令安装它,例如:`pip install Visual`。如果依然无法解决问题,可以尝试在Python官方包管理网站(pypi.org)上搜索该包并查看它的详细信息和安装方法。
阅读全文