赞
踩
bash修改方法
打开路径文件,在bash中输入
vi ~/.bashrc
按i,切换编辑模式
复制下面代码到文件中:
export HF_ENDPOINT="https://hf-mirror.com"
按esc,再按shift+z+z(或者按:wq)保存写入
再更新路径,bash输入:
source /.bashrc
结束,try一try:
新建python文件,随便下载个东西如下:
- import os
- from huggingface_hub import hf_hub_download
- hf_hub_download(repo_id="internlm/internlm-7b", filename="config.json",cache_dir="/")
注意:cache_dir 修改为你的存放地址。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。