Mar 072010
Installing Python modules with easy_install
Answer:
Install Python modules cannot be easier with easy_install.
To use easy_install, you can use apt-get to install the "python-setuptools" package
# sudo apt-get install python-setuptools
Then you can use easy_install to install the module you want, e.g. pymongo
# sudo easy_install pymongo