Skip to content

Instantly share code, notes, and snippets.

@lazidoca
Created August 30, 2017 01:17
Show Gist options
  • Save lazidoca/765680f6bbbdbfddb4fe858a1df5bbcd to your computer and use it in GitHub Desktop.
Save lazidoca/765680f6bbbdbfddb4fe858a1df5bbcd to your computer and use it in GitHub Desktop.
Get python lib directory
% python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
/usr/lib/python2.7/site-packages
% cd $(!!)
cd $(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
% pwd
/usr/lib/python2.7/site-packages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment