1. 程式人生 > >pip安裝django的時候提示沒有這個命令

pip安裝django的時候提示沒有這個命令

問題描述:

在安裝pyenv安裝完python的時候,用pip安裝django提示沒有這個命令

[[email protected] ~]# pip install django== 2.0
pyenv: pip: command not found

The `pip' command exists in these Python versions:
  3.6.2

如果沒有從python.org提供的二進位制檔案中安裝pyenv,則需要單獨安裝pip

安裝完所需的python版本後,下載並安裝pip:

使用get-pip.py進行安裝
要安裝pip,請安全下載get
-pip.py: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
或者:wget https://bootstrap.pypa.io/get-pip.py
然後執行以下命令: python get-pip.py 警告:如果您使用的是由作業系統或其他程式包管理器管理的Python安裝,請務必小心。get-pip.py不與這些工具協調,可能會使系統處於不一致狀態。

除了使用pip安裝python還可以用git clone

git clone https://github.com/django/django.git

升級PIP

在Linux或macOS上:

[[email protected] ~]# pip install -U pip
Requirement already up-to-date: pip in /usr/lib/python2.7/site-packages (18.1)

在Windows上:

python -m pip install -U pip

 

pip安裝文件:https://pip.pypa.io/en/latest/installing/

django安裝方法:https://www.djangoproject.com/download/