Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 folder.

Clearly since source control provides the complete control to downgrade, upgrade to any branch, tag, it works very well.

Is there a way using one of the Package installers (easy_install or pip or other), one can achieve the same.

easy_install obtains the tar.gz and install them using the setup.py install which installs in the dist-packages folder in python2.6. Is there a way to configure it, or pip to use the source version control system (SVN/GIT/Hg/Bzr) instead.

share|improve this question

5 Answers

up vote 25 down vote accepted

Using pip this is quite easy. For instance:

pip install -e hg+http://bitbucket.org/andrewgodwin/south/#egg=South

Pip will automatically clone the source repo and run "setup.py develop" for you to install it into your environment (which hopefully is a virtualenv). Git, Subversion, Bazaar and Mercurial are all supported.

You can also then run "pip freeze" and it will output a list of your currently-installed packages with their exact versions (including, for develop-installs, the exact revision from the VCS). You can put this straight into a requirements file and later run

pip install -r requirements.txt

to install that same set of packages at the exact same versions.

share|improve this answer
This is a pretty old question. I personally figured all these well enough now. But I am sure, it will help others that stumble here. – Lakshman Prasad Oct 27 '09 at 7:05
Infact I currently use the pip trunk, that comes with uninstall as well, that you wrote. – Lakshman Prasad Oct 27 '09 at 7:19
Great. Yep, I figured you had this under control, but wanted to make sure this answer was available to anyone else coming across the question. – Carl Meyer Oct 27 '09 at 13:05

If you download or check out the source distribution of a package — the one that has its "setup.py" inside of it — then if the package is based on the "setuptools" (which also power easy_install), you can move into that directory and say:

$ python setup.py develop

and it will create the right symlinks in dist-packages so that the .py files in the source distribution are the ones that get imported, rather than copies installed separately (which is what "setup.py install" would do — create separate copies that don't change immediately when you edit the source code to try a change).

As the other response indicates, you should try reading the "setuptools" documentation to learn more. "setup.py develop" is a really useful feature! Try using it in combination with a virtualenv, and you can "setup.py develop" painlessly and without messing up your system-wide Python with packages you are only developing on temporarily:

http://pypi.python.org/pypi/virtualenv
share|improve this answer
2  
+1: virtualenv is essential when doing python development – codeape Jun 23 '09 at 17:40
virtualenv is essential <3 – Skylar Saveland Dec 19 '09 at 20:18
3  
Also note that "pip install -e ." is equivalent to "python setup.py develop", except that it also works with packages that don't use setuptools in their setup.py (because pip forces them to use it anyway ;> ) – Carl Meyer May 18 '11 at 18:30

easy_install has support for downloading specific versions. For example:

easy_install python-dateutil==1.4.0

Will install v1.4, while the latest version 1.4.1 would be picked if no version was specified.

There is also support for svn checkouts, but using that doesn't give you much benefits from your manual version. See the manual for more information above.

Being able to switch to specific branches is rarely useful unless you are developing the packages in question, and then it's typically not a good idea to install them in site-packages anyway.

share|improve this answer
should it not be python-dateutil==1.4.0 (double equals)? – typeoneerror May 12 '10 at 23:04
yes it should. I fixed it. – David Cournapeau May 14 '10 at 4:46

I don't develop in Python but í've founded this tutorial: http://peak.telecommunity.com/DevCenter/EasyInstall , it's the best thing that i have found, I hope you find the correct answer.Sorry about my english

share|improve this answer

easy_install accepts a URL for the source tree too. Works at least when the sources are in Subversion.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.