I have installed easy_install with Portable Python 2-7 on Windows XP (through the distribute module). But when I type a DOS command such as
easy_install pandas
I get the following:

And I don’t find any “parse” module on internet (and “easy_install parse” yields the same output)
The error is about the module
urllib.parse, notparse. The documentation of the urlparse module says:which means your code expects to be run with Python 3. You are running Python 2.7 which means it won’t work (because the module
urllib.parseis still calledurlparse). Perhaps you need to look into installing a version of Portable Python that supports Python 3?