views:

74

answers:

2

Hello, With Ruby you can do gem install from the command line to install a module...even if it is not on your machine.

Can you do that with python. Does someone know of a module?

Seth

+4  A: 

no it does not have a ruby installer that I know of. It does have easy_install and pip though. Your google-fu is lacking.

aaronasterling
+3  A: 

There's setuptools, which allows you to install packages from PyPi via easy_install. Another option is pip, which also installs from PyPi.

Amber