【发布时间】:2021-05-06 13:51:24
【问题描述】:
我一直在尝试通过 pip 在我的 rpi 3 模型 B 上安装一个包 我的操作系统是 raspbian。基于 Debian 的 pip 版本是 21.0.1,python 版本是 3.7.4 我正在使用的命令是:
python3 -m pip install librosa
问题是依赖解析器花费了太长时间来解决冲突。 几个小时后,它会一遍又一遍地重复这条线几个小时(我什至让安装运行了两天一夜)
INFO: pip is looking at multiple versions of <Python from requires-Python> to determine which version is compatible with other requirements. this could take a while.
INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. If you want to abort this run you can press ctrl + c to do so.
我尝试使用更严格的约束,例如添加“numpy > 1.20.0”和其他内容,但现在弹出了,我不知道我现在能做什么。
【问题讨论】:
-
您尝试安装的全套软件包和版本是什么?
标签: python installation pip librosa