Skip to content

Instantly share code, notes, and snippets.

@mazz
Created March 29, 2013 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mazz/5274170 to your computer and use it in GitHub Desktop.
Save mazz/5274170 to your computer and use it in GitHub Desktop.
# These are installation specific values created when PyQt4 was configured.
_pkg_config = {
'pyqt_bin_dir': '/System/Library/Frameworks/Python.framework/Versions/2.7/bin',
'pyqt_config_args': '',
'pyqt_mod_dir': '/Library/Python/2.7/site-packages/PyQt4',
'pyqt_modules': 'QtCore QtGui QtHelp QtMultimedia QtNetwork QtDBus QtDeclarative QtOpenGL QtScript QtScriptTools QtSql QtSvg QtTest QtWebKit QtXml QtXmlPatterns phonon QtDesigner',
'pyqt_sip_dir': '/System/Library/Frameworks/Python.framework/Versions/2.7/share/sip/PyQt4',
'pyqt_sip_flags': '-x VendorID -t WS_MACX -x PyQt_NoPrintRangeBug -t Qt_4_8_4 -x Py_v3 -g',
'pyqt_version': 0x040a00,
'pyqt_version_str': '4.10',
'qt_data_dir': '/usr/local/Qt4.8',
'qt_dir': '/',
'qt_edition': 'free',
'qt_framework': 1,
'qt_inc_dir': '/usr/include',
'qt_lib_dir': '/Library/Frameworks',
'qt_threaded': 1,
'qt_version': 0x040804,
'qt_winconfig': 'shared'
}
@mazz
Copy link
Author

mazz commented Mar 29, 2013

[michael@varga (Fri Mar 29 18:40:21) /System/Library/Frameworks/Python.framework/Versions/2.7/bin]% ls -la
total 736
drwxr-xr-x 18 root wheel 612 26 Mar 22:56 ./
drwxr-xr-x 11 root wheel 374 24 Mar 22:34 ../
lrwxr-xr-x 1 root wheel 7 17 Dec 20:59 2to3@ -> 2to32.7
-rwxr-xr-x 1 root wheel 288 17 Dec 20:59 2to3-2.7*
lrwxr-xr-x 1 root wheel 8 17 Dec 20:59 2to32.7@ -> 2to3-2.7
lrwxr-xr-x 1 root wheel 7 17 Dec 20:59 idle@ -> idle2.7
-rwxr-xr-x 1 root wheel 230 17 Dec 20:59 idle2.7*
lrwxr-xr-x 1 root wheel 8 17 Dec 20:59 pydoc@ -> pydoc2.7
-rwxr-xr-x 1 root wheel 215 17 Dec 20:59 pydoc2.7*
lrwxr-xr-x 1 root wheel 9 17 Dec 20:59 python@ -> python2.7
lrwxr-xr-x 1 root wheel 16 17 Dec 20:59 python-config@ -> python2.7-config
-rwxr-xr-x 1 root wheel 35120 20 Mar 19:40 python2.7*
-rwxr-xr-x 1 root wheel 1755 17 Dec 20:59 python2.7-config*
lrwxr-xr-x 1 root wheel 10 17 Dec 20:59 pythonw@ -> pythonw2.7
-rwxr-xr-x 1 root wheel 35120 20 Mar 19:40 pythonw2.7*
-rwxr-xr-x 1 root wheel 315756 26 Mar 22:56 sip*
lrwxr-xr-x 1 root wheel 11 17 Dec 20:59 smtpd.py@ -> smtpd2.7.py
-rwxr-xr-x 1 root wheel 18678 17 Dec 20:59 smtpd2.7.py*

@mazz
Copy link
Author

mazz commented Mar 29, 2013

[michael@varga (Fri Mar 29 18:45:38) /System/Library/Frameworks/Python.framework/Versions/2.7/bin]% python -c "import sys, pprint; pprint.pprint(sys.path)"
['',
'/Library/Python/2.7/site-packages/pip-1.3.1-py2.7.egg',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages',
'/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old',
'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload',
'/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC',
'/Library/Python/2.7/site-packages']

@mazz
Copy link
Author

mazz commented Mar 29, 2013

python -c "import sys; print sys.prefix"

/System/Library/Frameworks/Python.framework/Versions/2.7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment