importlib-resources 5.12.0 has requirement zipp>=3.1.0; python_version < "3.10", but you'll have zipp 1.0.0 which is incompatible.
时间: 2024-05-10 11:21:25 浏览: 207
python-importlib-metadata
This error message indicates that the version of zipp installed on your system is not compatible with the version required by importlib-resources 5.12.0. Specifically, importlib-resources 5.12.0 requires zipp version 3.1.0 or higher, but your system has zipp version 1.0.0 installed.
To resolve this issue, you can try upgrading zipp to the required version using pip:
```
pip install --upgrade zipp
```
This should install the latest version of zipp that is compatible with your Python version and satisfies the requirement of importlib-resources 5.12.0.
阅读全文