关于python:如何通过-pip-安装-ranger

5次阅读

共计 501 个字符,预计需要花费 2 分钟才能阅读完成。

ranger is a console file manager with VI key bindings. It provides a minimalistic and nice curses interface with a view on the directory hierarchy. It ships with rifle, a file launcher that is good at automatically finding out which program to use for what file type.
https://github.com/ranger/ranger

个别装置 ranger 是通过包管理器装置的,例如 apt 包管理器能够通过如下的命令装置 :

sudo apt install ranger

但有些时候没有 sudo 权限,或者因为 python2 python3 之间的 python 问题导致的 ranger 问题。

所以咱们须要通过 pip 装置。

然而通过上面的命令是行不通的

pip install ranger

上面的命令才是正确的

pip install ranger-fm

这里就不得吐槽一下 pypi 的包名称和导包的时候不统一的问题了

想要理解更多知识点,看这个吧 Linux 下 pip 多版本治理

正文完
 0