Questions tagged «easy-install»

EasyInstall是一个软件包管理器,提供了一种标准格式来分发Python程序和库。setuptools模块的一部分。


9
为什么要在easy_install上使用pip?[关闭]
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 3年前关闭。 一条推文中写道: 不要使用easy_install,除非您喜欢对自己的脸部进行刺伤。使用点子。 为什么要在easy_install上使用pip?难道不是PyPI和程序包作者最主要的原因吗?如果作者将废话源tarball(例如:缺少文件,没有setup.py)上传到PyPI,则pip和easy_install都将失败。除了化妆品的差异,为什么Python的人(如上面的鸣叫)似乎强烈地倾向于在点子的easy_install? (假设我们正在谈论由社区维护的Distribute软件包中的easy_install)

13
如何删除使用Python的easy_install安装的软件包?
Python easy_install使安装新软件包非常方便。但是,据我所知,它没有实现依赖项管理器的其他常见功能-列出和删除已安装的软件包。 找出已安装的软件包的最佳方法是什么,以及删除已安装软件包的首选方法是什么?如果我手动(例如,通过rm /usr/local/lib/python2.6/dist-packages/my_installed_pkg.egg类似方式)删除软件包,是否需要更新任何文件?

11
如何在Ubuntu上安装LXML
我在Ubuntu 11上使用easy_install安装lxml遇到困难。 当我输入时,$ easy_install lxml我得到: Searching for lxml Reading http://pypi.python.org/simple/lxml/ Reading http://codespeak.net/lxml Best match: lxml 2.3 Downloading http://lxml.de/files/lxml-2.3.tgz Processing lxml-2.3.tgz Running lxml-2.3/setup.py -q bdist_egg --dist-dir /tmp/easy_install-7UdQOZ/lxml-2.3/egg-dist-tmp-GacQGy Building lxml version 2.3. Building without Cython. ERROR: /bin/sh: xslt-config: not found ** make sure the development packages of libxml2 and libxslt are installed …



19
ImportError:没有名为PIL的模块
我在外壳中使用以下命令来安装PIL: easy_install PIL 然后我运行python,并输入:import PIL。但是我得到这个错误: Traceback (most recent call last): File "<console>", line 1, in <module> ImportError: No module named PIL 我从来没有遇到过这样的问题,您怎么看?



11
在64位Windows上安装SetupTools
我在Windows 7 64位系统上运行Python 2.7,当我运行setuptools的安装程序时,它告诉我未安装Python 2.7。具体的错误消息是: `Python Version 2.7 required which was not found in the registry` 我安装的Python版本是: `Python 2.7 (r27:82525, Jul 4 2010, 07:43:08) [MSC v.1500 64 bit (AMD64)] on win32` 我正在看setuptools网站,它没有提到64位Windows的任何安装程序。我错过了什么吗,还是必须从源代码安装它?

23
ImportError:没有名为Crypto.Cipher的模块
当我尝试运行app.py(Python 3.3,PyCrypto 2.6)时,我的virtualenv不断返回上面列出的错误。我的进口货单是from Crypto.Cipher import AES。我在寻找重复项,您可能会说有重复项,但是我尝试了解决方案(尽管大多数都不是解决方案),但没有任何效果。 您可以在下面查看PyCrypto的文件格式:

12
如何在Windows上点子或easy_install tkinter
我的空闲状态抛出错误,并指出tkinter无法导入。 有没有一种简单的方法可以tkinter通过pip或安装easy_install? 似乎有很多软件包名称在出现…… 此版本以及其他各种各样的版本tkinter-pypy均无效。 pip install python-tk 我在Windows上使用python 2.7,不能apt-get。 谢谢。

26
安装几乎所有库的pip问题
我很难用pip安装几乎所有东西。我是编码的新手,所以我认为这可能是我做错了的事情,因此选择easy_install来完成我需要完成的大部分工作,而这种工作通常是有效的。但是,现在我正在尝试下载nltk库,但都没有完成任务。 我尝试进入 sudo pip install nltk 但得到以下回应: /Library/Frameworks/Python.framework/Versions/2.7/bin/pip run on Sat May 4 00:15:38 2013 Downloading/unpacking nltk Getting page https://pypi.python.org/simple/nltk/ Could not fetch URL [need more reputation to post link]: There was a problem confirming the ssl certificate: <urlopen error [Errno 1] _ssl.c:504: error:0D0890A1:asn1 encoding routines:ASN1_verify:unknown message digest algorithm> Will …
101 python  pip  nltk  easy-install 

16
在系统范围内安装pip和virtualenv的官方“首选”方式是什么?
这是人们似乎最常推荐的: $ sudo apt-get install python-setuptools $ sudo easy_install pip $ sudo pip install virtualenv 或者这是我从http://www.pip-installer.org/en/latest/installing.html获得的: $ curl -O https://github.com/pypa/virtualenv/raw/master/virtualenv.py $ python virtualenv.py my_new_env $ . my_new_env/bin/activate (my_new_env)$ pip install ... 还是完全不同的东西?

6
绕过pip卸载的确认提示
我正在尝试在超级用户环境中卸载所有django软件包,以确保将我所有的webapp依赖项都安装到我的virtualenv中。 sudo su sudo pip freeze | grep -E '^django-' | xargs pip -q uninstall 但是pip希望确认每个软件包都已卸载,并且-ypip似乎没有选择。有更好的方法来卸载一批python模块吗?是rm -rf .../site-packages/正确的方法吗?是否有easy_install替代方法? 或者,最好强迫pip将所有依赖项安装到virtualenv上,而不是依靠系统python模块来满足这些依赖项,例如pip --upgrade install,但是甚至强制安装同样旧的版本以覆盖任何系统模块。我尝试激活我的virtualenv,然后pip install --upgrade -r requirements.txt似乎确实安装了依赖项,甚至包括系统路径中存在的依赖项,但是我不确定这是否是因为我的系统模块太旧了。而且man pip似乎并不能保证这种行为(即,安装系统站点软件包中已经存在的相同版本的软件包)。

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.