Possible Duplicate:
Installing modules in Python on Windows
The instructions in the documentation aren't helping. How do I install a module in Python?
Possible Duplicate:
Installing modules in Python on Windows
The instructions in the documentation aren't helping. How do I install a module in Python?
If there is setup.py
source file in module directory, run windows command line utility, change current directory to module directory and write
python setup.py install
make sure that python bin directory is in your system path variable
The same as everywhere, use easy_install
. (Still it is somewhat more difficult to use under Windows because the cmd
shell is far less powerful than bash
)