mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
446534afbe
* +python2 * at least a few tests working * clean up semverator dep
14 lines
468 B
Python
14 lines
468 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
|