How to tell a Python program where a shared library is?

Fredrik Lundh fredrik at pythonware.com
Thu May 3 13:52:10 EDT 2001


Edward C. Jones wrote:
> Suppose I have a shared library, say "mymodule.so". How do I tell a Python
> program where "mymodule.so" is? If necessary I can change the PATH environment
> variable. How is this done?

import the sys module, and modify the sys.path variable (it's an
ordinary list, and can be modified using append, insert, etc)

    import sys
    sys.path.append("/mypythondirectory")

Cheers /F





More information about the Python-list mailing list