macos 安装 transformers 的时候报错:ERROR: Could not build wheels for tokenizers which use PEP 517 and canno

简单点说:

  • 你如果不指定具体版本而直接:pip install transformers 的话,他给你装的版本有点问题,macos 系统可能有点不支持,具体问题我也不是很清楚
  • 解决的方案:直接指定安装 2.4.1 版本的 transformers 即可
pip install transformers==2.4.1 -i https://pypi.tuna.tsinghua.edu.cn/simple

参考网站:
https://github.com/UKPLab/sentence-transformers/issues/221
https://github.com/huggingface/transformers/issues/2831#issuecomment-600141935

你可能感兴趣的:(日常学习,macos,python,人工智能)