当前位置: 首页 > article >正文

huggingface 下载方法 测试ok

目录

设置环境变量

python 下载无token:

python 下载加token

常见报错


设置环境变量

Linux

export HF_ENDPOINT=https://hf-mirror.com

  • Windows Powershell
$env:HF_ENDPOINT = "https://hf-mirror.com"

pip install -U huggingface_hub

huggingface-cli download --h


$env:HF_ENDPOINT = "https://hf-mirror.com"

huggingface-cli download --resume-download gpt2--local-dir gpt2

python 下载无token:

报错,和浏览器的一样,401错误


# 设置环境变量
import os
os.environ["HF_ENDPOINT"] = "https://hf-mirror.com"

# 代码下载
from huggingface_hub import hf_hub_download
hf_hub_download(repo_id="black-forest-labs/FLUX.1-dev" ,filename="model_index.json" ,local_dir="./qafacteval")

python 下载加token



import os
os.environ["HF_ENDPOINT"] = "https://hf-mirror.com"

from huggingface_hub import snapshot_download

local_dir = r"B:\data\aigc1"
repo_id = "black-forest-labs/FLUX.1-dev"
token = "xxxxxx"

snapshot_download(repo_id=repo_id, local_dir=local_dir, resume_download=True, local_dir_use_symlinks=False, token=token)


# 没成功:
# from huggingface_hub import hf_hub_download
# hf_hub_download(repo_id="black-forest-labs/FLUX.1-dev" ,filename="model_index.json" ,local_dir="./qafacteval")

常见报错

  1. huggingface-cli: error: invalid choice: ‘download’ (choose from ‘env’, ‘login’, ‘whoami’, ‘logout’, ‘repo’, ‘lfs-enable-largefiles’, ‘lfs-multipart-upload’, ‘scan-cache’, ‘delete-cache’)
    • 可能是由于python版本<3.8,下载的huggingface-cli版本过低;在python>=3.8环境下运行pip install -U huggingface_hub命令后解决
  2. ModuleNotFoundError: No module named ‘chardet’
    • 安装对应模块即可:pip install chardet

http://www.kler.cn/a/387216.html

相关文章:

  • 卓胜微嵌入式面试题及参考答案(2万字长文)
  • Unity3D实现视频和模型融合效果
  • JVM详解:JVM的系统架构
  • 论文阅读《BEVFormer v2》
  • 在linux中使用nload实时查看网卡流量
  • 【C++】new操作符的使用说明
  • es自动补全(仅供自己参考)
  • 【含开题报告+文档+PPT+源码】基于Springboot和vue的电影售票系统
  • 3. Redis的通用命令介绍
  • 使用 React Native WebView 实现 App 与 Web 的通讯
  • Python 爬虫使用 BeautifulSoup 进行 XPath 和 CSS 选择器定位
  • 3.3 软件需求:面对对象分析模型
  • 三周精通FastAPI:33 在编辑器中调试
  • 性能调优概念和目标
  • 破解数字化转型中的常见挑战:企业架构蓝图实施的关键策略与实用方案
  • Ubuntu 24.04 无边框
  • iOS SmartCodable 替换 HandyJSON 适配记录
  • 使用Python实现智能食品供应链管理的深度学习模型
  • oracle数据坏块处理(二)-逻辑坏块重新格式化处理
  • CUDA系统学习之一软件堆栈架构
  • 初试Lisp语言
  • 【大数据学习 | HBASE】hbase shell基础实操
  • Go语言面向对象编程
  • 【GESP】C++一级真题练习(202312)luogu-B3921,小杨的考试
  • mysql的高级进阶
  • 前端刺客系列----Vue 3 入门介绍