1、先装PyCharm和Anaconda,搭建隔离环境
2、主要流程
基本上看这个文章就够了
主要是安装一些所需的包,为了方便我放一下安装包的代码(我是用Anaconda Prompt装的,注意环境要换成刚才创建的隔离环境,conda activate 环境名)
pytorch安装:
pip install torch torchvision torchaudio -i https://pypi.tuna.tsinghua.edu.cn/simple
torch torchvision Pillow安装:
pip install torch torchvision Pillow -i https://pypi.tuna.tsinghua.edu.cn/simple
opencv_python安装:
pip install opencv_python -i https://pypi.tuna.tsinghua.edu.cn/simple
loguru安装:
pip install loguru -i https://pypi.tuna.tsinghua.edu.cn/simple
scikit-image安装:
pip install scikit-image -i https://pypi.tuna.tsinghua.edu.cn/simple
tqdm安装:
pip install tqdm -i https://pypi.tuna.tsinghua.edu.cn/simple
thop安装:
pip install thop -i https://pypi.tuna.tsinghua.edu.cn/simple
tabulate安装:
pip install tabulate -i https://pypi.tuna.tsinghua.edu.cn/simple
matplotlib安装:
pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple
pycocotools安装(很可能报错,解决方法看步骤3):
pip install cython -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install git+https://gitee.com/jiangjiajun/philferriere-cocoapi.git#subdirectory=PythonAPI
3、pycocotools安装报错解决方案
两个方法是一样的,二选一就行,实测可用
4、其他参考
百度安全验证https://baijiahao.baidu.com/s?id=1714914574762375202&wfr=spider&for=pc
镜像链接:
清华:https://pypi.tuna.tsinghua.edu.cn/simple