赞
踩
使用jpyter notebook时出现:
‘cannot import name BertForSequenceClassification from transformers’
好的,是我之前没安装过transformers,后面安装的时候一直提示更新pip,但是更新失败加爆红,这个pip的更新其实无关紧要,可以直接去transformers的官网或者其他出的版本帖子下载对应版本,或者是下载初始版本后,进行更新操作,会自动更新到最新的版本。我采用了第二种方式,我的环境是python3.11,我后面用了时下最新的transformers-4.38.2的版本,记得回到下载完后,jupyter notebook重启后再使用。
前提:以下操作以管理者运行cmd,在cmd中, activate+你已有的conda(查看自己的conda命令:conda env list)
conda update -n base -c defaults conda
2.清除缓存:有时候清除conda的缓存可能有助于解决环境解决的问题。你可以运行以下命令清除缓存:
conda clean --all
conda install -c huggingface transformers=4.38.2
如果channels中找不到transformers 4.38.2 版本。你可以尝试添加Hugging Face的channel,因为他们是transformers库的主要发布者之一。
使用以下命令来添加Hugging Face的channel:
先安装一个初始版本:
conda install transformers
先查看好自己已经安装上了:
pip show transformers
再进行更新:
pip install --upgrade transformers
在安装过程中,如有报错:
ERROR: Could not find a version that satisfies the requirement wheel (from versions: none) ERROR: No matching distribution found for wheel
尝试安装下面两个包:
C:\Users\clh\AppData\Local\Programs\Python\Python310\python.exe -m pip install setuptools
C:\Users\clh\AppData\Local\Programs\Python\Python310\python.exe -m pip install wheel
最后:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。