如何安装版本与配置声明中所需在库: matplotlib>=3.2.2 numpy>=1.18.5 opencv-python>=4.1.2 Pillow PyYAML>=5.3.1 scipy>=1.4.1 torch>=1.7.0 torchvision>=0.8.1 tqdm>=4.41.0 tensorboard>=2.4.1 seaborn>=0.11.0 pandas pycocotools>=2.0 # COCO mAP albumentations>=1.0.2
时间: 2023-06-06 13:07:38 浏览: 264
numpy+python 已经兼容 下载安装即可
要安装版本与配置声明中所需的库,你可以使用 Python 包管理器 pip。在终端或命令行中输入以下命令:
pip install matplotlib==3.2.2 numpy==1.18.5 opencv-python==4.1.2 Pillow PyYAML==5.3.1 scipy==1.4.1 torch==1.7.0 torchvision==0.8.1 tqdm==4.41.0 tensorboard==2.4.1 seaborn==0.11.0 pandas pycocotools==2.0
这将会下载并安装这些库的指定版本,注意有些库没有指定版本号,这些库会被自动安装到最新版本。
阅读全文