mirror of
https://github.com/python/cpython.git
synced 2025-07-28 21:55:21 +00:00
6 lines
180 B
Python
6 lines
180 B
Python
import sys
|
|
import os
|
|
_maclib = os.path.join(sys.prefix, 'Mac', 'Lib')
|
|
_scriptlib = os.path.join(_maclib, 'lib-scriptpackages')
|
|
sys.path.append(_maclib)
|
|
sys.path.append(_scriptlib)
|