尝试安装Requirements.txt时出现“找不到命令'pip'”错误

时间:2020-04-02 03:03:10

标签: django linux git

我正在尝试:在AWS服务器上pip install -r requirements.txt。我最近撤了一个git commit。

我收到此错误:

Command 'pip' not found, but can be installed with:

sudo apt install python-pip

所以我尝试输入:

sudo apt install python-pip install -r requirements.txt

and then

sudo apt install python-pip -r requirements.txt

但是两次尝试都给了我这个错误:

E: Command line option 'r' [from -r] is not understood in combination with the other options.

安装此命令的正确命令是什么?谢谢。

1 个答案:

答案 0 :(得分:0)

您正在混合多个命令。

  1. apt;它是Debian的软件包管理器。它与python包无关。您通过apt安装pip。还有其他方法可以做到这一点。

  2. pip:据了解,它是python软件包管理器。您可以通过在requirements.txt中列出它们来为项目安装依赖项。

正确的方法是:

sudo apt install python-pip
#install from a file requirements.txt:
sudo pip install -r requirements.txt
#install as a user :
pip install -U -r requirements.txt