ERROR: Could not find a version that satisfies the requirement torchvision==0.8.2
时间: 2023-09-27 22:08:17 浏览: 101
As an AI language model, I do not have access to your specific system information. However, this error message indicates that the version of the `torchvision` library you are trying to install (version `0.8.2`) is not available or compatible with your current environment.
You may want to try installing a different version of `torchvision` or check if your environment meets the requirements for the version you are trying to install. You can also try upgrading your environment to meet the requirements of the version you want to install.
You can also try running the following command to see if there are any other errors or messages that could provide more information:
```
pip install torchvision==0.8.2 --verbose
```
This will show a more detailed output of the installation process, which may help you identify the issue.
阅读全文