blob: 05b5afbdb23752016e86f3f36d0ccded94ac9c57 (
plain)
| 1
2
3
4
5
 | # Note #! intentionally left out.  This should be called with the version of 
# python you care about.
import sys
print ("/usr/lib/python%s.%s/site-packages" % (sys.version_info[0], sys.version_info[1],))
 |