Unable to use easy_install to install Python modules

前端 未结 6 818
北荒
北荒 2020-12-28 18:31

I am trying to use easy_install to install a module called requests by doing

easy_install requests

This work

6条回答
  •  無奈伤痛
    2020-12-28 19:02

    The following worked for me with Ubuntu 12.10 installing easy_install then pip:

    sudo apt-get install python-virtualenv
    curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
    sudo python get-pip.py
    

提交回复
热议问题