ModuleNotFoundError: No module named 'scipy.spatial'
时间: 2023-10-14 08:25:57 浏览: 334
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attribute ‘imread’,imresize,imsave等问题
This error message indicates that the SciPy library, specifically the module "spatial", is not installed on your system. You can install it using the following command:
```
pip install scipy
```
If you are using an Anaconda distribution, you can use the following command instead:
```
conda install scipy
```
阅读全文