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

pip install transformers教程

直接pip install transformers会报错,报错内容如下:

Collecting safetensors>=0.3.1 (from transformers)
  Using cached safetensors-0.5.2.tar.gz (66 kB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  error: subprocess-exited-with-error
  
  × Preparing metadata (pyproject.toml) did not run successfully.
  │ exit code: 1
  ╰─> [6 lines of output]
      
      Cargo, the Rust package manager, is not installed or is not on PATH.
      This package requires Rust and Cargo to compile extensions. Install it through
      the system's package manager or via https://rustup.rs/
      
      Checking for Rust toolchain....
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

× Encountered error while generating package metadata.
╰─> See above for output.

重点是Cargo, the Rust package manager, is not installed or is not on PATH这句话,所以可能Rust没有安装,那我们安装Rust,
参考网址,具体步骤:

# 确认一下你的curl是不是用snap安装的
sudo snap list | grep curl
# 如果是,卸载
sudo snap remove curl
# 然后用apt重新安装
sudo apt install curl
# 安装Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# 添加环境变量
source $HOME/.cargo/env
# 测试是否安装成功
rustc -V 

Rust安装成功后再pip install transformers即可


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

相关文章:

  • [0405].第05节:搭建Redis主从架构
  • 《机器学习》——贝叶斯算法
  • 幂次进近
  • 浏览器中调用vue方法
  • Jira用例自动去除summary重复用例
  • 基于微信小程序的汽车销售系统的设计与实现springboot+论文源码调试讲解
  • Flink集成TDEngine来批处理或流式读取数据进行流批一体化计算(Flink SQL)拿来即用的案例
  • rk3568 , buildroot , qt ,使用sqlite, 动态库, 静态库
  • 操作系统八股文学习笔记
  • STM32 C++编程,怎样使用printf函数从串口输出中文字符
  • Unreal Engine 5 C++ Advanced Action RPG 七章笔记
  • unity xrhand 手势识别
  • vue3 + element-plus + el-table 实现三层嵌套表格(含分页)
  • Golang学习笔记_24——泛型
  • 多态(2)
  • 闲谭SpringBoot--ShardingSphere分布式事务探究
  • 使用中间件自动化部署java应用
  • Oracle 学习指南与资料分享
  • React 实战详细讲解:setState 是什么、如何更新及批量处理
  • Java IDEA中Gutter Icons图标的含义
  • 实现一个VSCode插件(从创建到发布)
  • android 内存泄露实战分析
  • 台湾省村里边界2018年4月更新arcgis数据shp格式内容分析测评
  • Unity ShaderGraph中Lit转换成URP的LitShader
  • 【数学】概率论与数理统计(四)
  • docker run一个镜像如何指定最大可使用的内存大小、cpu大小