如何通过 pip 安装 ranger

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

如何通过 pip 安装 ranger_第1张图片

一般安装 ranger 是通过包管理器安装的,例如 apt 包管理器可以通过如下的命令安装 :

sudo apt install ranger

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

所以我们需要通过 pip 安装。

但是通过下面的命令是行不通的

pip install ranger

下面的命令才是正确的

pip install ranger-fm

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

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

你可能感兴趣的:(pythonpip)