当我搜索像这样的包时
pacman -Qs python
local/python2 2.7.15-2
A high-level scripting language
local/scons 3.0.1-1 (base-devel)
Extensible Python-based build utility列出了2个包,但没有找到python-3 ackage
但是如果我尝试安装像这样的python
pacman -S python
resolving dependencies…
looking for conflicts …
Packages (2) mpdecimal-2.4.2-2 python-3.6.6-1一个python-3包出现了!
使用pacman查询套餐的有效方法是什么?
发布于 2018-09-11 18:15:48
如上所述,确定here以搜索已安装的软件包:
$ pacman -Qs string1 string2 ...Pacman可以在数据库中搜索包,搜索包的名称和描述:
$ pacman -Ss string1 string2 ...https://stackoverflow.com/questions/52273076
复制相似问题