error: subprocess-exited-with-error × python setup.py egg_info did not run successfully. │ exit code: 1 ╰─> [5 lines of output] To install scikit-image from source, you will need numpy. Install numpy with pip: pip install numpy Or use your operating system package manager. For more details, see http://scikit-image.org/docs/stable/install.html [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: metadata-generation-failed × Encountered error while generating package metadata.
时间: 2023-07-02 15:24:15 浏览: 332
Python库 | subprocess-tee-0.1.tar.gz
这个错误提示显示您安装scikit-image时遇到了问题。错误信息中提到,您需要安装numpy,以便从源代码安装scikit-image。您可以按照以下步骤解决这个问题:
1. 按照提示使用pip安装numpy:`pip install numpy`
2. 如果您已经安装了numpy,请确保它的版本与scikit-image的要求兼容。
3. 确保您的系统中已安装必要的编译依赖项,例如C编译器和Python开发头文件等。
4. 尝试使用操作系统的软件包管理器安装scikit-image。
如果您仍然无法解决这个问题,建议提供更多详细的错误信息,以便更好地帮助您解决问题。
阅读全文