我可以使用easy_install吗?


28

我可以在Ubuntu 10.10上使用easy_install吗?如果是,那怎么办?


easy_install如果可以使用pip,请不要使用,您可以考虑使用经过改进的Python软件包管理器。
gertvdijk 2014年

Answers:


47

easy_install是python-setuptools的一部分。首先安装python-setuptools

sudo apt-get install python-setuptools

然后您可以使用easy_install从pypi安装

您需要将sudo与easy_install一起使用

sudo easy_install module_name

例如: sudo easy_install py2app

或者有另一个模块python-pip,这也将有助于从pypi用命令安装

sudo pip install module_name

例如: sudo pip install py2app


你打赌我26秒;)。
哈维尔·里维拉

非常感谢!做得好!我再也不会使用“ rm”了!
沉思玮申思思维

apt install python3-setuptools
NeilG
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.