完美解决 fatal: unable to access ‘https://github.com/open-mmlab/mim.git/‘: Encountered end of file

加粗样式

在安装mmaction时,用了官方的命令:

pip install git+https://github.com/open-mmlab/mim.git

报了错:
fatal: unable to access ‘https://github.com/open-mmlab/mim.git/’: Encountered end of file

解决方法:
将https5个字母换成git这3个字母即可,如下:

pip install git+git://github.com/open-mmlab/mim.git

成功:
完美解决 fatal: unable to access ‘https://github.com/open-mmlab/mim.git/‘: Encountered end of file_第1张图片

你可能感兴趣的:(完美解决 fatal: unable to access ‘https://github.com/open-mmlab/mim.git/‘: Encountered end of file)