如何在tensorflow中克隆git存储库[重复]

问题描述 投票:-1回答:2

这个问题在这里已有答案:

面对以下问题:

(tensorflow) C:\Users\venkat>git config clone https://github.com/tensorflow/tensorflow
'git' is not recognized as an internal or external command, operable program or batch file.
git
2个回答
4
投票

如果您需要克隆存储库,请使用git clone https://github.com/tensorflow/tensorflow

“git”无法识别意味着您的计算机/计算机中未安装git或未正确设置路径变量。


0
投票
  • 你有安装git吗?

如果答案是肯定的,那么在Windows中,Git建议使用git bash console in Windows而不是Windows命令行。

  • git config clone它不是一个有效的git命令

如果要克隆git存储库,请使用:git clone <url_repository>

git clone https://github.com/tensorflow/tensorflow

© www.soinside.com 2019 - 2024. All rights reserved.