3

我正在尝试使用 Google Colaboratory 从 Github 克隆,我使用的命令是:

!git clone git@github.com:CliMT/climt.git

但我得到以下信息:

Cloning into 'climt'...
The authenticity of host 'github.com (192.30.255.112)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)?

但由于这是 Google Colaboratory,我无法在终端输入“是”。

我能做些什么?

谢谢!

4

2 回答 2

1

如果您只需要公共读取访问权限,您可以将 SSH 访问权限替换为 https:!git clone https://github.com/CliMT/climt.git

如果您使用 SSH 是因为您计划从 colaboratory 运行时写入该 github 存储库,那么您必须手动设置 SSH 密钥和可能的 known_hosts 文件。或使用https://pexpect.readthedocs.io/en/stable/之类的脚本键入“是”

(FTR 注意警告不是特定于实验室的:https ://help.github.com/articles/testing-your-ssh-connection/ )

于 2018-02-10T22:44:07.250 回答
0

错误的:

!git clone git@github.com:CliMT/climt.git

在 jupyter 笔记本中使用:

!git clone https://github.com/CliMT/climt.git
于 2018-02-12T02:19:04.350 回答