Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

106
votes
11answers
39k views

How do I remove packages installed with Python's easy_install?

Python's easy_install makes installing new packages extremely convenient. However, as far as I can tell, it doesn't implement the other common features of a dependency manager - listing and removing ...
43
votes
4answers
14k views

How to install pip on windows?

The python software pip is a replacement for *easy_install*. But I will install pip using easy_install on Windows. Is there a better way? Edit: This also seems to work: Download the last easy ...
30
votes
2answers
11k views

Why can't easy_install find MySQLdb?

This is what I tried: $ easy_install-2.6 -d /home/user/lib/python2.6 MySQLdb Searching for MySQLdb Reading http://pypi.python.org/simple/MySQLdb/ Couldn't find index page for 'MySQLdb' (maybe ...
21
votes
3answers
9k views

Installing SetupTools on 64-bit Windows

I'm running Python 2.7 on Windows 7 64-bit, and when I run the installer for setuptools it tells me that Python 2.7 is not installed. The specific error message is: `Python Version 2.7 required ...
20
votes
3answers
6k views

The problem with installing PIL using virtualenv or buildout

When I install PIL using easy_install or buildout it installs in such way, that I must do 'import Image', not 'from PIL import Image'. However, if I do "apt-get install python-imaging" or use "pip -E ...
20
votes
3answers
6k views

virtualenv, mysql-python, pip: anyone know how?

I'm trying to install the mysql bindings in a virtualenv. I'd prefer to use pip or easy_install. pip gives me the following error: File "setup_posix.py", line 24, in mysql_config raise ...
17
votes
5answers
1k views

State of Python Packaging: Buildout, Distribute, Distutils, EasyInstall, etc

The last time I had to worry about installing Python packages was two years ago working with Enthought, NumPy and MayaVi2. That experience gave me lingering nightmares related to quirky behavior ...
11
votes
1answer
428 views

How to disable easy_install or pip building ppc by default on Snow Leopard 10.6.6?

Since I have Xcode 4 installed and it seems xcode 4 can't build ppc binaries anymore, quite a lot of python packages(especially mercurial pymongo, etc.) can't build and complained that there is no ...
10
votes
5answers
4k views

Python package install using pip or easy_install from repos

The simplest way to deal with python package installations, so far, to me, has been to check out the source from the source control system and then add a symbolic link in the python dist-packages ...
10
votes
3answers
8k views

How do I install an .egg file without easy_install in Windows?

I have Python 2.6 and I want to install easy _ install module. The problem is that the only available installation package of easy _ install for Python 2.6 is an .egg file! What should I do?
9
votes
5answers
6k views

Installing easy_install… to get to installing lxml

I've come to grips with the fact that ElementTree isn't going to do what I want it to do. I've checked out the documentation for lxml, and it appears that it will serve my purposes. To get lxml, I ...
9
votes
6answers
2k views

How do I use easy_install and buildout when pypi is down?

I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch of Python eggs. This ...
8
votes
4answers
6k views

How to use Python's “easy_install” on Windows … it's not so easy!

After installing Python 2.7 on Windows XP, then manually setting the %PATH% to python.exe (why won't the python installer do this?), then installing setuptools 0.6c11 (why doesn't the python installer ...
8
votes
1answer
642 views

Easy_install cache downloaded files

Is there a way to configure easy_install to avoid having to download the files again when an installation fails?
6
votes
2answers
1k views

How to install lxml with easy_install?

I'm having difficulty installing lxml with easy_install on Ubuntu 11. When I type $ easy_install lxml I get: Searching for lxml Reading http://pypi.python.org/simple/lxml/ Reading ...
6
votes
2answers
111 views

Install local extras in Python

setup.py of my package X uses setuptools to optionally install an extra package Y, via the extras_require parameter. Now package Y disappeared from PyPi and, as far as I can tell, from the visible ...
6
votes
4answers
2k views

Permission denied when trying to install easy_install on OSX

I'm trying to install easy_install and, well... see for yourself: sh setuptools-0.6c11-py2.6.egg Processing setuptools-0.6c11-py2.6.egg Copying setuptools-0.6c11-py2.6.egg to ...
6
votes
1answer
2k views

How do I uninstall a Python module (“egg”) that I installed with easy_install?

I’ve installed a couple of Python modules using easy_install. How do I uninstall them? I couldn’t see an uninstall option listed in easy_install --help.
6
votes
1answer
843 views

Steps to install py2cairo?

Seems that pycairo was branched to py2cairo for 2.x versions back in May. There are no pip or easy_install installation options for py2cairo. I've grabbed the latest py2cairo tar, as well as the cairo ...
6
votes
3answers
2k views

easy_install force a version

Mac os x 10.6. Hello I'm trying to install lxml to solve an inkscape message. I've had a look at the website, and version 2.2.8 looked reasonable to me but when I did easy_install lxml it installed ...
6
votes
2answers
206 views

Including global package into a virtualenv that has been created with --no-site-packages

I'd usually prefer to create virtualenvs with --no-site-packages option for more isolation, and also because default python global packages includes quite a lot of packages, and usually most of them ...
5
votes
11answers
557 views

What is the official “preferred” way to install pip and virtualenv systemwide?

Is it this, which people seem to recommend most often: $ sudo apt-get install python-setuptools $ sudo easy_install pip $ sudo pip install virtualenv Or this, which I got from ...
5
votes
2answers
2k views

Installing psycopg2 (postgresql) in virtualenv on windows

I installed psycopg2 in virtualenv using easy_install psycopg2. I did not see any errors and looks like installation went fine.. there is an egg file created in the site-packages dir for psycopg2.. ...
5
votes
1answer
919 views

Can I use `pip` instead of `easy_install` for `python setup.py install` dependency resolution?

python setup.py install will automatically install packages listed in requires=[] using easy_install. How do I get it to use pip instead?
5
votes
4answers
250 views

How can I deal with python eggs for multiple platforms in one location?

We have a common python installation for all of our systems in order to ensure every system has the same python installation and to ease configuration issues. This installation is located on a shared ...
5
votes
3answers
518 views

How do I forbid easy_install from zipping eggs?

What must I put into distutils.cfg to prevent easy_install from ever installing a zipped egg? The compression is a nice thought, but I like to be able to grep through and debug that code. I pulled in ...
4
votes
5answers
2k views

Why is Python easy_install not working on my Mac?

I have a Mac running Python 2.6. When I try to use easy_install I get this message: /usr/bin/easy_install-2.6:7: UserWarning: Module pkg_resources was already imported from ...
4
votes
5answers
514 views

Python - Is there any way to get pip without setuptools?

Seems kinda weird that they'd require a package manager to install a package manager. I'm on Windows BTW.
4
votes
2answers
4k views

Python install uninstall easy_install

I have two versions of python on my mac: One preinstalled by Apple in /usr/bin One from python.org in /Library/Frameworks/Python.framework/Versions/2.6 easy_install always installs to /usr/bin ...
4
votes
4answers
650 views

Can a Python package depend on a specific version control revision of another Python package?

Some useful Python packages are broken on pypi, and the only acceptable version is a particular revision in a revision control system. Can that be expressed in setup.py e.g requires = ...
4
votes
7answers
2k views

What Is The Best Database For Delphi Desktop Applications That Supports Stored Procedures?

I started with Turbo Pascal 3, went to TP5, Bought TP6 called Borland the next day and downgraded to TP5.5. Bought Delphi 3, and now have Delphi 5 Enterprise. I sort of lost interest in writing code ...
4
votes
2answers
4k views

Easy_install of wxpython has “setup script” error

I have an install of python 2.5 that fink placed in /sw/bin/. I use the easy install command sudo /sw/bin/easy_install wxPython to try to install wxpython and I get an error while trying to process ...
3
votes
1answer
84 views

python: what happens during easy_install?

I'm a little confused about egg files and installing them using easy_install, hope you can help me with it. (I read about people's recommendation on pip, but I'll like to understand this before I move ...
3
votes
1answer
86 views

easy_install virtualenv on python 2.4

I'm trying to install the latest version of virtualenv using easy_install on a RHEL5.6 with python 2.4 and I'm receiving the following error. File ...
3
votes
2answers
130 views

Automating signup and instance creation on Amazon EC2

Background : I have built an app that runs well on an EC2 micro instance. I want my friends to use this app too, but they aren't quite good with computers. Question : How do I make it easy for ...
3
votes
2answers
704 views

Upgraded Python on Snowleopard Using Homebrew now pip and easy_install don't work

I am new to python, I have changed my path to point to the new python 2.7, but pip and easy_install, and mercurial are still looking at the default installed version 2.6. How do I fix this?
3
votes
4answers
3k views

How to install easy_install in Python 2.7.1 on Windows 7

I have installed Python 2.7.1 on Windows 7, but I am unable to install easy_install. Please help me.
3
votes
1answer
827 views

installing latest matplotlib version with pipy

In some way this question was already asked ... so accept my apology ... I am trying to install the latest version of matplotlib from here: http://pypi.python.org/pypi/matplotlib/1.0.1 I know I can ...
3
votes
3answers
910 views

How to install libxml2 in virtualenv?

I have virtualenv with --no-site-packages option. I'm using scrapy in it. Scrapy uses libxml2 by import libxml2. How to install libxml2 in virtualenv using pip or easy_install?
3
votes
3answers
2k views

“AttributeError: 'module' object has no attribute '__getstate__' ” shows up when I use easy_install

For some reason, every time I attempt to install a new module using easy_install, I'm getting the error: AttributeError: 'module' object has no attribute '__getstate__' I'm using ...
3
votes
1answer
181 views

easy_install extra build arguments

I'm trying to install ReportLab, but I have no C compiler available to compile the rl_accel library. Using setup.py, I would add an extra argument like so: python setup.py --rl_accel=no install Is ...
3
votes
4answers
235 views

Best practice for installing python modules from an arbitrary VCS repository

I'm newish to the python ecosystem, and have a question about module editing. I use a bunch of third-party modules, distributed on PyPi. Coming from a C and Java background, I love the ease of ...
3
votes
1answer
160 views

Problems installing a package from PyPI: root files not installed

After installing the BitTorrent-bencode package, either via easy_install BitTorrent-bencode or pip install BitTorrent-bencode, or by downloading the tarball and installing that via easy_install ...
3
votes
4answers
2k views

Problem using easy_install on Windows 7, 64 bit. (cannot find python.exe)

I have just now installed Python 2.6 on my Windows 7 (64 bit) Lenovo t61p laptop. I have downloaded Sphinx and nose and apparently installed them correctly using python setup.py install (at ...
3
votes
2answers
69 views

warnings emitted during 'easy_install'

When I easy_install some python modules, warnings such as: <some module>: module references __file__ <some module>: module references __path__ <some module>: module MAY be using ...
3
votes
3answers
162 views

What is the standard sort order for Python release/version numbers?

Python's pip and easy_install follow some rules to sort packages by their release numbers. What are the rules for numbering beta/release/bugfix releases so these tools will know which is the newest?
3
votes
2answers
719 views

How to make easy_install execute custom commands in setup.py?

I want my setup.py to do some custom actions besides just installing the Python package (like installing an init.d script, creating directories and files, etc.) I know I can customize the ...
3
votes
4answers
480 views

Does python's pip support http authentication?

As the title says, does pip support http authentication, like easy_install does? If not, are there any (better) alternatives to running a private package repository? I see pip can access source ...
2
votes
2answers
124 views

Bundle python tool in Cocoa app with easy_install

My Cocoa app requires a Python command line tool to be installed on the user's system using easy_install. Ideally, I'd want to bundle one bash file with my app which I can then run. But as far as I ...
2
votes
1answer
23 views

Running a .py file before build in setup.py

I'm creating a setup.py with easyinstall and I need to execute a certain py file in the same project before the build is done. I tried setup_requires and ext_modules, but both seem not to be able to ...

1 2 3 4