【Git】Ubuntu git 下载程序

step 1: 下载git

$ sudo apt-get install git

step 2: git 命令下载github上程序

$ git clone + XXXXX.git

如:https://github.com/mozilla/DeepSpeech-examples
打开后,点击clone or downloads,再复制地址:https://github.com/mozilla/DeepSpeech-examples.git
则下载命令为:
$ git clone https://github.com/mozilla/DeepSpeech-examples.git

在下载前,可先在terminal中进入到要下载的目录,那么下载的程序即在当前目录下。

おすすめ

転載: blog.csdn.net/u010637291/article/details/106241389