Tag: easy install

为什么Python easy_install无法在我的Mac上运行?

我有一个运行Python 2.6的Mac。 当我尝试使用easy_install我收到以下消息: /usr/bin/easy_install-2.6:7: UserWarning: Module pkg_resources was already imported from /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.pyc, but /Library/Python/2.6/site-packages is being added to sys.path from pkg_resources import load_entry_point /usr/bin/easy_install-2.6:7: UserWarning: Module site was already imported from /System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site.pyc, but /Library/Python/2.6/site-packages is being added to sys.path from pkg_resources import load_entry_point Traceback (most recent call last): File "/usr/bin/easy_install-2.6", line 10, in <module> load_entry_point('setuptools==0.6c9', […]

virtualenv,mysql-python,点子:任何人都知道如何?

我试图在virtualenv中安装mysql绑定。 我宁愿使用点或easy_install。 点子给我以下错误: File "setup_posix.py", line 24, in mysql_config raise EnvironmentError("%s not found" % (mysql_config.path,)) EnvironmentError: mysql_config not found easy_install从sourceforge获得一个404或给我一个非常类似的错误。 有谁知道如何解决这个在virtualenv?

Python软件包脱机安装

下载一个python软件包的最佳方式是什么,它是从pypi的依赖关系在另一台机器上离线安装? 有没有简单的方法来做到这一点用pip或easy_install? 我试图在未连接到互联网的FreeBSD盒子上安装请求库。

我可以使用`pip`而不是`easy_install`来执行`python setup.py install`的依赖关系parsing吗?

python setup.py install将使用easy_install自动安装easy_install requires=[]列出的软件包。 我怎样才能使用pip呢?

我如何在Jython中安装各种Python库?

我知道我可以用Java安装Jython,并且可以在使用Python的地方使用Jython。 Jythonshell工作正常。 在Jython中,我如何安装像lxml , Scrappy和BeautifulSoup这样的库,通常我会通过pip或easy_install

如何将easy_install指向vcvarsall.bat?

我已经安装了MSVC ++ 2010 Express,而且我的vcvarsall.bat文件位于C:\Program Files\Microsoft Visual Studio 10.0\VC ,它位于我的系统PATH中。 当我运行easy_install ,找不到vcvarsall.bat。 有什么我需要在我的distutils.cfg文件中设置指向我的MSVC ++安装? G:\>easy_install hg-git install_dir C:\Python26\Lib\site-packages\ Searching for hg-git Best match: hg-git 0.2.6 Processing hg_git-0.2.6-py2.6.egg hg-git 0.2.6 is already the active version in easy-install.pth Using c:\python26\lib\site-packages\hg_git-0.2.6-py2.6.egg Processing dependencies for hg-git Searching for dulwich>=0.6.0 Reading http://pypi.python.org/simple/dulwich/ Reading http://samba.org/~jelmer/dulwich Reading http://launchpad.net/dulwich Best match: dulwich 0.7.1 Downloading […]

如何在Ubuntu上安装lxml

我在Ubuntu 11上安装easy_install lxml时遇到了困难。 当我input$ 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 ** Using build configuration […]

我如何在Windows上安装点子?

pip是easy_install的替代品。 但是,我应该在Windows上使用easy_install安装pip吗? 有没有更好的办法?