ModuleNotFoundError: No module named 'imutils'
时间: 2023-10-12 19:11:22 浏览: 208
Python里出现ModuleNotFoundError: No module named ‘pandas’时该怎样解决
5星 · 资源好评率100%
This error occurs when the Python interpreter cannot find the 'imutils' module, which is required by the code being executed.
To fix this error, you need to install the 'imutils' module using pip. You can do this by running the following command in your terminal:
```
pip install imutils
```
Once the module is installed, you can import it in your Python script using the following statement:
```
import imutils
```
阅读全文