tags:

views:

232

answers:

1

Hi

I've tried to install pip on windows, but it's not working:

giving me ImportError: No module named pkg_resources

easy_install doesn't have version 3.1 or so, just 2.5, and should be replaced by pim.

is there easy way to install it on windows?

A: 

setuptools doesn't quite work on Python 3.1 yet. Try installing packages with regular distutils, or use binary packages (.exe, .msi) provided by the package author.

Martin v. Löwis
thank you, should I use rather 2.5?
blefesd
depends on what specific packages you need. 2.5 is not maintained anymore, so if you use 2.x, use 2.6.
Martin v. Löwis