无法克隆到张量流模型中
Not able to clone into tensorflow models
我正在尝试在 windows 上使用 git bash 克隆 https://github.com/tensorflow/models.git,克隆后我得到以下信息:
Cloning into 'models'...
remote: Enumerating objects: 81, done.
remote: Counting objects: 100% (81/81), done.
remote: Compressing objects: 100% (62/62), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
尝试使用 git bash 和 github desktop
进行克隆
我刚刚尝试并成功克隆了 GitHub 存储库(下载 507.69 MiB...)。
再试一次:
- latest Git for Windows
- CMD 中的简化路径
即:
set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
如果问题仍然存在,那可能是网络问题,因为 (you can try with https://github-debug.com/ 需要更多跟踪)。
OP njain confirms :
I had forgot to restart the PC after setting up the new paths, I guess that was the reason: it's working now.
我正在尝试在 windows 上使用 git bash 克隆 https://github.com/tensorflow/models.git,克隆后我得到以下信息:
Cloning into 'models'...
remote: Enumerating objects: 81, done.
remote: Counting objects: 100% (81/81), done.
remote: Compressing objects: 100% (62/62), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
尝试使用 git bash 和 github desktop
进行克隆我刚刚尝试并成功克隆了 GitHub 存储库(下载 507.69 MiB...)。
再试一次:
- latest Git for Windows
- CMD 中的简化路径
即:
set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
如果问题仍然存在,那可能是网络问题,因为
OP njain confirms
I had forgot to restart the PC after setting up the new paths, I guess that was the reason: it's working now.