Could not find a version that satisfies the requirement mxnet-cu114
时间: 2023-10-13 19:28:52 浏览: 94
`mxnet-cu114` is a specific version of the MXNet deep learning library that is optimized for NVIDIA GPUs with compute capability 11.4. To install this version, you need to have an NVIDIA GPU with this compute capability and the corresponding CUDA toolkit and cuDNN library installed.
Assuming you have met these requirements, you can try installing `mxnet-cu114` using pip:
```
pip install mxnet-cu114
```
If you still encounter the error "Could not find a version that satisfies the requirement mxnet-cu114", you may need to check if your pip installation is up-to-date or try specifying the version number explicitly, for example:
```
pip install mxnet-cu114==1.8.0
```
Note that the version number may vary depending on the latest release of MXNet that supports the compute capability of your GPU.
阅读全文