error: subprocess-exited-with-error × Running setup.py install for scikit-image did not run successfully. │ exit code: 1 ╰─> [968 lines of output] /home/zh242653915/.local/lib/python3.9/site-packages/setuptools/__init__.py:84: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated. !! ******************************************************************************** Requirements should be satisfied by a PEP 517 installer. If you are using pip, you can try `pip install --use-pep517`. ********************************************************************************
时间: 2023-07-01 22:23:04 浏览: 657
Python库 | subprocess-tee-0.1.tar.gz
根据出现的错误信息,建议您使用 `pip install --use-pep517` 命令来安装 scikit-image 库,以使用 PEP 517 安装器满足依赖项:
```
pip install --use-pep517 scikit-image==0.12.3
```
如果您仍然遇到问题,建议您查看 scikit-image 的官方安装指南,以确保您的环境符合所需条件。
阅读全文