win11安装pycocotools时遇到ERROR: Could not build wheels for pycocotools which use PEP 517

ERROR: Failed building wheel for pycocotools解决办法

问题:在下载安装pycocotools时候出现一下问题:

ERROR: Could not build wheels for pycocotools which use PEP 517 and cannot be installed 

尝试了很多种办法,均无效,包括其他博主分享的安装虚拟机等方法。

后来发现是由于pycocotools这个工具包对于win11不适配,不能使用过去的下载指令安装。

pip install pycocotools

需要替换成

pip install pycocotools-windows

至此就成功了,再搬运一下其他博主安装虚拟机的方法,可以参考

解决方法:安装gcc和g++

首先更新包列表,运行

sudo apt update

之后安装build-essential软件包

sudo apt install build-essential

该命令将安装包括gcc,g ++在内的一些包

你可能感兴趣的:(pytorch,网络)