2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Hugging Faceのssh鍵の作り方

Posted at

一応、自分の環境

  • M1 Macbook Pro (Apple Silicon)

経緯

Stable Diffusion 3 Medium をインストールしたかったんだけど、結局下記のやり方でやって没になりました。
https://towards-agi.medium.com/how-to-download-and-install-stable-diffusion-3-medium-446b37f354f7
知見だけメモしたいので残します。

手順

Hugging Faceのページに飛んで、また導かれるままにアカウント登録とEmail認証をする。

三点リーダーをクリックしてclone repositoryを選択
CleanShot 2024-07-18 at 20.30.25.png

やり方が出てくる。
CleanShot 2024-07-18 at 20.32.14.png
書いてるのを日本語翻訳しながらやる

$ git lfs install

は自分はエラーになって、元々色々brewで入れているので

$ brew update
$ brew install git-lfs

をした。

参考: https://stackoverflow.com/questions/48734119/git-lfs-is-not-a-git-command-unclear

git clone はsshでしたかったので切り替えて
CleanShot 2024-07-18 at 20.34.45.png

$ ssh-keygen

で鍵作って、公開鍵をコードの上のリンク https://huggingface.co/settings/keys で登録して、
公開鍵のファイル名が、id_rsaでなかったのでPCの.ssh/configに下記を登録した

Host hf.co
HostName hf.co
IdentityFile ~/.ssh/id_hogehoge <=作った秘密鍵
User git

で、git clone

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?