安装pycocotools时,需要安装git,在本机上安装完git后,使用
pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI 命令安装成功,但是anaconda虚拟环境中无法使用该包。
于是考虑在anaconda的虚拟环境中安装该包,使用上述名单安装,提示如下:
考虑在虚拟环境中安装git,搜索得到相关信息
但是不知道如何具体操作,希望大神指点,十分感谢。
问题已解决。方法如下:
在anaconda虚拟环境下无法调用已安装的git时,可以在虚拟环境下使用
conda install git 安装git,安装完成后即可使用
pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI 在虚拟环境中安装 pycocotools。