how can i use git clone Meta-Llama-3.1-8B-Instruct
#93
by
xiangsuyu
- opened
i use: git clone https://:@huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct
response is :
fatal: unable to access 'https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct/': OpenSSL SSL_connect: Connection was reset in connection to huggingface.co:443
check my network, there is no problem accessing "https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct"
Hi @xiangsuyu ,
I had a similar issue when trying to clone the repo using "git clone https://:@huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct" off of hugging face.
Try to use this code instead:
!git lfs install
!git clone https://<username>:<write_access_token>@huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct
replace <username>
with your hugging face username and <write_token>
with your hugging face access token with Write privileges. This ended up working for me.