安装bert_embedding遇到问题

在使用命令:

pip install bert-embedding

安装bert_embedding的时候,遇到如下问题:

ERROR: Failed cleaning build dir for numpy
Successfully built gluonnlp
Failed to build numpy
ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (numpy)

解决方法:

先安装较新版本的 numpy:

pip install numpy

然后尝试安装 bert-embedding,忽略它对 numpy的依赖:

pip install bert-embedding --no-deps

--no-deps 是一个 pip 安装命令的选项,它的意思是在安装某个包时,不安装任何依赖包 。也就是说,当你使用 pip install 安装某个包时,通常 pip 会自动安装该包所需要的依赖库,而加上 --no-deps 选项后,pip 会忽略这些依赖关系,不去安装这些依赖包。

举个例子,如果你安装 packageA,它有 packageB 作为依赖,正常情况下 pip 会自动安装 packageB。但是如果你使用 pip install packageA --no-depspip 只会安装 packageA,不会安装 packageB,即使 packageBpackageA 的必需依赖。

相关推荐
PigeonGuan4 天前
[Bert] 提取特征之后训练模型报梯度图错误
人工智能·深度学习·bert
不如语冰5 天前
跟着问题学19——大模型基础之BERT详解(1)
人工智能·python·深度学习·神经网络·bert·transformer
不如语冰5 天前
跟着问题学19——大模型基础之BERT详解(2)
人工智能·python·深度学习·神经网络·bert·transformer
python_知世6 天前
通俗易懂!使用Excel和TF实现Transformer
人工智能·深度学习·自然语言处理·大模型·bert·excel·transformer
Just Jump6 天前
Bert中文文本分类
bert·中文文本分类
Hoper.J8 天前
微调 BERT:实现抽取式问答
人工智能·深度学习·自然语言处理·llm·bert
volcanical9 天前
Bert各种变体——RoBERTA/ALBERT/DistillBert
人工智能·深度学习·bert
爱补鱼的猫猫9 天前
2、Bert论文笔记
论文阅读·人工智能·bert
volcanical9 天前
Dataset Distillation with Attention Labels for Fine-tuning BERT
人工智能·深度学习·bert