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

spacy 安装 en_core_web_sm

目录

spacy win11 成功

linux No matching distribution found for numpy<3.0.0,>=2.0.0

解决方法:

linux安装失败:

linux安装成功 从GitHub上下载


spacy win11 成功

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple spacy

linux No matching distribution found for numpy<3.0.0,>=2.0.0


                  ERROR: No matching distribution found for numpy<3.0.0,>=2.0.0
                  [end of output]
      
              note: This error originates from a subprocess, and is likely not a problem with pip.
            error: subprocess-exited-with-error
      
            × pip subprocess to install build dependencies did not run successfully.
            │ exit code: 1
            ╰─> See above for output.
      

解决方法:

python版本太低,是3.8,升级为3.10就好了。

  

note: This error originates from a subprocess, and is likely not a problem with pip.

linux安装失败:

# English
python -m spacy download en_core_web_sm --user
 
# Chinese
python -m spacy download zh_core_web_sm --user

linux安装成功 从GitHub上下载

pip3 install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.2.0/en_core_web_sm-3.2.0.tar.gz

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

相关文章:

  • 记录一下在原有的接口中增加文件上传☞@RequestPart
  • 7天掌握SQL - 第一天:数据库基础与SQL入门
  • json-bigint处理前端精度丢失问题
  • Quality minus junk论文阅读
  • Jenkins更换主题颜色+登录页面LOGO图片
  • Bug:引入Feign后触发了2次、4次ContextRefreshedEvent
  • MySQL中有哪几种锁?
  • Linux基础指令(汇总)
  • StarRocks 架构
  • Flutter:AnimatedPadding动态修改padding
  • 云原生之k8s服务管理
  • idea启动服务报错Application run failed
  • 目标驱动学习python动力
  • MySQL创建和管理触发器
  • (附项目源码)Java开发语言,215 springboot 大学生爱心互助代购网站,计算机毕设程序开发+文案(LW+PPT)
  • 常用命令集
  • vue2中引入cesium全步骤
  • MongoDB调优利器:掌握性能分析工具mongostat
  • 字节跳动青训营刷题笔记14
  • Spark 分布式计算中网络传输和序列化的关系(二)
  • leetcode - 2516. Take K of Each Character From Left and Right
  • 2024年亚太C题第二版本二问题1求解过程+代码运行以及问题2-4超详细思路分析
  • 第三百三十节 Java网络教程 - Java网络UDP服务器
  • uni-app快速入门(十)--常用内置组件(下)
  • 查看docker日志 journalctl -u docker.service
  • Modern Effective C++ Item 11:优先考虑使用deleted函数而非使用未定义的私有声明