mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
14 lines
477 B
Python
14 lines
477 B
Python
import site
|
||
import sys
|
||
|
||
# tea considers /usr/local the “global install” location
|
||
# setting `sys.prefix` is kinda nuts but brew does the same
|
||
# so we’re assuming they vetted all options
|
||
# sys.prefix = "/usr/local"
|
||
# ^^ undid this because it broke `python -m venv` installing pip for some reason
|
||
|
||
# enable automatic user installs if pip makes the decision
|
||
# that this is good idea. eg. if /usr/local isn’t writable
|
||
# this is what it will do
|
||
site.ENABLE_USER_SITE = True
|