Preparing metadata (setup.py) ... error 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],已经安装了Numpy
时间: 2024-02-14 15:04:44 浏览: 141
Python库 | qcloud_cos_python3-3.3.6.tar.gz
5星 · 资源好评率100%
如果您已经安装了 NumPy,但是在安装 scikit-image 时仍然出现此错误,则可能需要检查您的 Python 版本和环境设置是否正确。请确保您的 Python 版本符合 scikit-image 的要求,并且在运行 pip install 时使用了正确的虚拟环境。此外,还可以尝试使用以下命令重新安装 setuptools 和 wheel:
```
pip install --upgrade setuptools wheel
```
如果问题仍然存在,请提供更多错误信息以便我更好地帮助您。
阅读全文