python 安装第三方库

(1)pycocotools 安装

pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI

一个一个的下载比较浪费时间可以一起下载在安装

下载包
pip download -d /tmp/packagesdir -r requirements.txt
安装下载包
pip install --no-index --ignore-installed --find-links=/tmp/packagesdir -r requirements.txt

你可能感兴趣的:(python 安装第三方库)