Installing a Python module
Most modules come with a setup.py program that uses the distutils module import function to install a new module. Use this command in the module directory to install it:python setup.py install
Successful installation should make the module available in either /usr/bin/ or /usr/local/bin/.
Listing installed modules
pydoc modules
No comments:
Post a Comment