How Do I Install Modules In Python On Windows?
Possible Duplicate: Installing modules in Python on Windows The instructions in the documentation aren't helping. How do I install a module in Python?
Solution 1:
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
Solution 2:
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
)
Solution 3:
You could try using pip
Post a Comment for "How Do I Install Modules In Python On Windows?"