赞
踩
Building wheels for collected packages: tokenizers
error: subprocess-exited-with-error
× Building wheel for tokenizers (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> See above for output.
note: This error originates from a subprocess, and is likely not a problem with pip.
Building wheel for tokenizers (pyproject.toml) … error
ERROR: Failed building wheel for tokenizers
Failed to build tokenizers
ERROR: Could not build wheels for tokenizers, which is required to install pyproject.toml-based projects
python -V
我是 python 3.10transformers==4.6.0
huggingface transformer 这个包,依赖 tokenizers
包, tokenizers
使用了 Rust 多线程加速处理数据集。
这个是Rust的Bug。
以下几种解决方案任选一种即可:
第一种:降低python版本, 比如使用 python3.8
第二种:修改源码再编译,在源码上修改依赖的 tokenizers
的版本
然后使用 python setup.py install
装包
第三种:使用最新版的 transformers包,修改咱们自己项目的代码。修改咱们项目内报错位置的代码,使其支持最新版的 transformers。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。