pip install mxnet 出错This error originates from a subprocess, and is likely not a problem with pip
时间: 2023-11-08 14:03:50 浏览: 167
Python使用pip安装报错:is not a supported wheel on this platform的解决方法
5星 · 资源好评率100%
这个错误信息不是特别明确,可能是安装过程中发生了一些问题。建议先尝试更新pip和setuptools,然后再重新安装mxnet。
可以使用以下命令更新pip和setuptools:
```
python -m pip install --upgrade pip setuptools
```
然后再使用以下命令重新安装mxnet:
```
pip install mxnet
```
如果还是出现错误,可以尝试使用conda安装mxnet,或者查看详细的错误信息以便进一步调试。
阅读全文