已解决resampy 0.4.2 requires numba>=0.53, but you have numba 0.48.0 which is incompatible.


已解决ERROR: pip’s dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
resampy 0.4.2 requires numba>=0.53, but you have numba 0.48.0 which is incompatible.
Successfully installed llvmlite-0.31.0 numba-0.48.0





文章目录

  • 报错问题
  • 报错翻译
  • 报错原因
  • 解决方法
  • 千人全栈VIP答疑群联系博主帮忙解决报错,白嫖80G学习资料





报错问题



一个小伙伴遇到问题跑来私信我,想用用pip安装numba模块,但是发生了报错(当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,顺便记录一下希望可以帮助到更多遇到这个bug不会解决的小伙伴),报错代码如下所示:

在这里插入图片描述

pip install numba

报错信息内容如下所示

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
resampy 0.4.2 requires numba>=0.53, but you have numba 0.48.0 which is incompatible.
Successfully installed llvmlite-0.31.0 numba-0.48.0



报错翻译



报错信息翻译如下所示

错误:pip的依赖关系解析程序当前没有考虑安装的所有包。这种行为是以下依赖关系冲突的根源。

resampy 0.4.2要求numba>=0.53,但numba 0.48.0不兼容。

已成功安装llvmlite-0.31.0 numa-0.48.0




报错原因



报错原因

因为numba的版本不兼容所以报错。

小伙伴们按下面的命令卸载模块后,安装指定版本的numba即可!!!





解决方法



第一步执行下面的卸载模块,这里的numba是要卸载的第三方库名,可以换成自己需要卸载的模块:

pip uninstall numba

第二步安装指定版本的模块:

pip install numba==0.53


以上是此问题报错原因的解决方法,欢迎评论区留言讨论是否能解决,如果有用欢迎点赞收藏文章谢谢支持,博主才有动力持续记录遇到的问题!!!

千人全栈VIP答疑群联系博主帮忙解决报错,白嫖80G学习资料


由于博主时间精力有限,每天私信人数太多,没办法每个人都及时回复,可以通过9.9付费专栏获取优先解答机会,白嫖学习资料大礼包:

  • 千人全栈VIP答疑群订阅Python零基础专栏:《100天精通Python从入门到就业》专栏读者可以进千人全栈VIP答疑群
  • 优点博主优先回复答疑,群里大佬众多可以抱团取暖,体系化专栏100篇文章从零到一适合零基础和进阶提升的同学
  • 后续福利代码指导、远程服务、简历指导、面试题库、招聘内推、80G全栈学习视频、300本IT电子书、每周送实体书等等
  • 专栏订阅地址:https://blog.csdn.net/yuan2019035055/category_11466020.html
  • 注意:如果希望得到及时回复,建议订阅专栏进入千人全栈VIP答疑群联系我,订阅专栏后联系方式点击了解:https://bbs.csdn.net/topics/613263041
  • 已解决resampy 0.4.2 requires numba>=0.53, but you have numba 0.48.0 which is incompatible._第1张图片
    已解决resampy 0.4.2 requires numba>=0.53, but you have numba 0.48.0 which is incompatible._第2张图片
免费资料获取,更多粉丝福利,关注下方公众号获取

在这里插入图片描述

你可能感兴趣的:(《告别Bug》,ubuntu,python,linux,pip,numba)