How to install Django in Ubuntu 11.10

前端 未结 3 1438
伪装坚强ぢ
伪装坚强ぢ 2021-01-15 06:36

I am very new to Ubuntu OS and Python as well. I want to install Django. But i dont have easy_install and I tried below command to install pip

s         


        
3条回答
  •  孤街浪徒
    2021-01-15 07:27

    First update repositories

    sudo apt-get update
    

    then try

    sudo apt-get install python-pip python-dev build-essential python-setuptools
    

    if nothing, you can install pip and setuptools packages manually. Download them from PyPI.

提交回复
热议问题