On 01/12/2018 09:44 PM, Richard Laager wrote: > 1. Determine the directory: > $ python -c 'import sys ; print(sys.path)[1]' > For example: > /usr/lib/python2.7 I was incorrect here. Use this instead: 1. Determine the directory: $ python -c 'from distutils import sysconfig ; print(sysconfig.get_python_lib())' For example: /usr/lib/python2.7/site-packages -- Richard