解决timm安装不上的问题,
之前是在pycharm的terminal里输入pip install timm,下载成功之后依旧报错缺少timm模块
百度,timm是一个常见的预训练模型库,里面提供了很多的计算机视觉的SOTA模型,
网上给出的解决办法:通过git与pip进行安装
git clone https://github.com/rwightman/pytorch-image-models
cd pytorch-image-models && pip install -e .
(注意,git时要关掉梯子 )
但是报错,如下
error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.
fatal: The remote end hung up unexpectedly
fatal: protocol error: bad pack header
百度,说是因为git的默认缓存大小不足导致的,
解决方法是:使用下面的命令增加缓存大小(自行根据实际情况确定):
git config --global http.postBuffer 2000000000
好了,但是又有新的报错
ERROR: Package 'timm' requires a different Python: 3.6.9 not in '>=3.7'
原因是timm没有指定版本
刚才时cd pytorch-image-models && pip install -e .
现在直接
conda install timm
安装成功