pantry/projects/python.org/sitecustomize.py

13 lines
388 B
Python
Raw Normal View History

import site
import sys
# tea considers /usr/local the “πglobal install” location
# setting this is kinda nuts but brew does the same so
# were assuming they vetted all options
sys.prefix = "/usr/local"
# enable automatic user installs if pip makes the decision
# that this is good idea. eg. if /usr/local isnt writable
# this is what it will do
site.ENABLE_USER_SITE = True