How can I tell what directory an imported library comes from in python?
I'm trying to modify a python library that I downloaded and am using. But the changes I'm making aren't doing anything. So I suspect that python is importing a different copy of this library from somewhere else on the filesystem. So...
When I run import foolib
in开发者_StackOverflow社区 python, how can I tell where on the filesystem it's getting that library from?
the correct answer is to use sys.modules
... it works on everything, even sys
. sys.modules
is a dictionary where the keys are the imported names (modules or packages), and the values are their respective locations. here is some usage output from my Mac:
$ python
Python 2.5.1 (r251:54863, Feb 9 2009, 18:49:36)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys, os, django, google
>>> sys.modules['sys']
<module 'sys' (built-in)>
>>> sys.modules['os']
<module 'os' from '/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/os.pyc'>
>>> sys.modules['django']
<module 'django' from '/Library/Python/2.5/site-packages/Django-1.1.1-py2.5.egg/django/__init__.pyc'>
>>> sys.modules['google']
<module 'google' from '/usr/local/google_appengine/google/__init__.py'>
import foolib
print foolib.__file__
Unfortunately, this only works for some modules. E.g. it works on a module I wrote, but not on sys
.
Look at the foolib.__file__
.
精彩评论