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

I'm having a hard time setting up python packages. EasyInstall from SetupTools is supposed to help that, but they don't have an executable for Python 2.6.

For instance to install Mechanize, I'm just supposed to put the Mechanize folder in C:\Python24\Lib\site-packages according to INSTALL.txt, but runnning the tests does not work. Can someone help shed some light on this? Thanks!

share|improve this question

6 Answers

up vote 22 down vote accepted

This is a good tutorial on how to get easy_install on windows. The short answer: add C:\Python26\Scripts (or whatever python you have installed) to your PATH.

share|improve this answer
6  
+1 hey thanks for linking to my article. – Tom Willis Sep 19 '09 at 23:35
Step 1 - Get python recognized as a command Step 2 - Run the setup.py file – Chris May 31 '11 at 20:49

You don't need the executable for setuptools. You can download the source code, unpack it, and run python setup.py install.

share|improve this answer
1  
Thanks for your response! Where do I unpack it and where would I run that command? – echoblaze Sep 19 '09 at 21:07
1  
If you downloaded the tar file, just unpack it with a program like WinRAR. Once you've done that, open up the command prompt and navigate to the folder where it was unpacked (You'll know you're at the right spot if you see a setup.py file). From there you can run python setup.py install and it will install it for you. – Evan Fosmark Sep 19 '09 at 21:27

The selected answer is out dated. So first, pip is preferred over easy_install, (Why use pip over easy_install?). Then follow these steps to install pip on Windows, it's quite easy.

  1. Install distribute

    curl http://python-distribute.org/distribute_setup.py | python

  2. Install pip

    curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python

  3. Optionally, you can add the path to your environment so that you can use pip anywhere. it's somewhere like C:\Python33\Scripts

share|improve this answer
of all the suggestions, this is the only one that worked for me. My environment - Python 3.3.1 , Windows 7 64bit, x64 PC. if possible, please upvote this, saves ppl a lot of trouble. – Quest Monger May 10 at 1:54

Have a look at this tutorial: How to install Python packages on Windows 7.

share|improve this answer

As I wrote elsewhere

Packaging in Python is dire. The root cause is that the language ships without a package manager.

Fortunately, there is one half-decent package manager for Python, called Pip. Pip is inspired by Ruby's Gem, but lacks some vital features (listing packages, and upgrading en mass). Ironically, Pip itself is complicated to install. Installation on the popular 64-bit Windows demands building and installing two packages from source. This is a big ask for anyone new to programming.


So the right thing to do is to install pip. However if you can't be bothered, Christoph Gohlke provides binaries for popular Python packages for all Windows platforms http://www.lfd.uci.edu/~gohlke/pythonlibs/

In fact, building some Python packages requires a C compiler (eg. mingw32) and library headers for the dependencies. This can be a nightmare on Windows, so remember the name Christoph Gohlke.

share|improve this answer

You can also just download and run ez_setup.py, though the SetupTools documentation no longer suggests this. Worked fine for me as recently as 2 weeks ago.

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.