如何在tensorflow中克隆git存储库

时间:2018-02-28 07:44:35

标签: git

面对以下问题:

(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.

2 个答案:

答案 0 :(得分:4)

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

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

答案 1 :(得分: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