Could not find a version that satisfies the requirement numpy==1.13.3
时间: 2023-08-03 17:15:00 浏览: 228
numpy-1.13.3
This error message typically appears when you are trying to install a package with a specific version number, but the version you specified is not available. In this case, you are trying to install numpy version 1.13.3, but it is possible that this version is no longer available or has been removed from the package repository.
You can try installing a different version of numpy by specifying a different version number, or you can try installing the latest version by running:
```
pip install numpy
```
This will install the latest version of numpy that is available in the package repository.
阅读全文