2009-11-20 08:25:32 +01:00
|
|
|
"""Locations where we look for configs, install stuff, etc"""
|
2014-08-31 01:52:28 +02:00
|
|
|
from __future__ import absolute_import
|
2009-11-20 08:25:32 +01:00
|
|
|
|
|
|
|
import os
|
2014-06-13 04:59:01 +02:00
|
|
|
import os.path
|
2017-03-19 01:13:28 +01:00
|
|
|
import platform
|
2014-04-15 22:09:23 +02:00
|
|
|
import site
|
|
|
|
import sys
|
2017-03-18 18:32:10 +01:00
|
|
|
import sysconfig
|
2017-03-19 01:13:28 +01:00
|
|
|
from distutils import sysconfig as distutils_sysconfig
|
2018-05-30 09:19:05 +02:00
|
|
|
from distutils.command.install import SCHEME_KEYS
|
2014-04-15 22:09:23 +02:00
|
|
|
|
2017-08-31 17:48:18 +02:00
|
|
|
from pip._internal.compat import WINDOWS, expanduser
|
|
|
|
from pip._internal.utils import appdirs
|
2014-01-27 15:07:10 +01:00
|
|
|
|
2014-04-24 13:29:57 +02:00
|
|
|
# Application Directories
|
|
|
|
USER_CACHE_DIR = appdirs.user_cache_dir("pip")
|
|
|
|
|
2010-07-02 02:03:54 +02:00
|
|
|
|
2013-05-19 03:05:25 +02:00
|
|
|
DELETE_MARKER_MESSAGE = '''\
|
|
|
|
This file is placed here by pip to indicate the source was put
|
|
|
|
here by pip.
|
|
|
|
|
|
|
|
Once this package is successfully installed this source code will be
|
|
|
|
deleted (unless you remove this file).
|
|
|
|
'''
|
|
|
|
PIP_DELETE_MARKER_FILENAME = 'pip-delete-this-directory.txt'
|
|
|
|
|
2014-01-27 15:07:10 +01:00
|
|
|
|
2013-05-19 03:05:25 +02:00
|
|
|
def write_delete_marker_file(directory):
|
|
|
|
"""
|
|
|
|
Write the pip delete marker file into this directory.
|
|
|
|
"""
|
|
|
|
filepath = os.path.join(directory, PIP_DELETE_MARKER_FILENAME)
|
2014-10-02 23:45:37 +02:00
|
|
|
with open(filepath, 'w') as marker_fp:
|
|
|
|
marker_fp.write(DELETE_MARKER_MESSAGE)
|
2013-05-19 03:05:25 +02:00
|
|
|
|
|
|
|
|
2010-07-02 02:03:54 +02:00
|
|
|
def running_under_virtualenv():
|
|
|
|
"""
|
|
|
|
Return True if we're running inside a virtualenv, False otherwise.
|
|
|
|
|
|
|
|
"""
|
2013-12-20 01:52:40 +01:00
|
|
|
if hasattr(sys, 'real_prefix'):
|
|
|
|
return True
|
|
|
|
elif sys.prefix != getattr(sys, "base_prefix", sys.prefix):
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
2009-11-20 08:25:32 +01:00
|
|
|
|
2012-09-01 16:55:20 +02:00
|
|
|
|
2012-06-06 05:01:35 +02:00
|
|
|
def virtualenv_no_global():
|
|
|
|
"""
|
|
|
|
Return True if in a venv and no system site packages.
|
|
|
|
"""
|
2014-01-27 15:07:10 +01:00
|
|
|
# this mirrors the logic in virtualenv.py for locating the
|
|
|
|
# no-global-site-packages.txt file
|
2012-06-06 05:01:35 +02:00
|
|
|
site_mod_dir = os.path.dirname(os.path.abspath(site.__file__))
|
2012-09-01 16:55:20 +02:00
|
|
|
no_global_file = os.path.join(site_mod_dir, 'no-global-site-packages.txt')
|
2012-06-06 05:01:35 +02:00
|
|
|
if running_under_virtualenv() and os.path.isfile(no_global_file):
|
|
|
|
return True
|
|
|
|
|
2014-01-27 15:07:10 +01:00
|
|
|
|
2010-07-01 17:27:07 +02:00
|
|
|
if running_under_virtualenv():
|
2009-11-20 08:25:32 +01:00
|
|
|
src_prefix = os.path.join(sys.prefix, 'src')
|
|
|
|
else:
|
2014-03-26 23:24:19 +01:00
|
|
|
# FIXME: keep src in cwd for now (it is not a temporary folder)
|
2012-05-30 17:43:55 +02:00
|
|
|
try:
|
|
|
|
src_prefix = os.path.join(os.getcwd(), 'src')
|
|
|
|
except OSError:
|
|
|
|
# In case the current working directory has been renamed or deleted
|
2014-01-27 15:07:10 +01:00
|
|
|
sys.exit(
|
|
|
|
"The folder you are executing pip from can no longer be found."
|
|
|
|
)
|
2009-11-20 08:25:32 +01:00
|
|
|
|
2016-11-06 18:24:43 +01:00
|
|
|
# under macOS + virtualenv sys.prefix is not properly resolved
|
2010-11-21 16:27:37 +01:00
|
|
|
# it is something like /path/to/python/bin/..
|
2013-11-25 00:26:22 +01:00
|
|
|
# Note: using realpath due to tmp dirs on OSX being symlinks
|
2010-11-21 16:27:37 +01:00
|
|
|
src_prefix = os.path.abspath(src_prefix)
|
|
|
|
|
2009-11-20 08:25:32 +01:00
|
|
|
# FIXME doesn't account for venv linked to global site-packages
|
|
|
|
|
2017-03-18 20:08:41 +01:00
|
|
|
site_packages = sysconfig.get_path("purelib")
|
2017-03-19 01:13:28 +01:00
|
|
|
# This is because of a bug in PyPy's sysconfig module, see
|
|
|
|
# https://bitbucket.org/pypy/pypy/issues/2506/sysconfig-returns-incorrect-paths
|
|
|
|
# for more information.
|
|
|
|
if platform.python_implementation().lower() == "pypy":
|
|
|
|
site_packages = distutils_sysconfig.get_python_lib()
|
2017-04-12 20:08:51 +02:00
|
|
|
try:
|
|
|
|
# Use getusersitepackages if this is present, as it ensures that the
|
|
|
|
# value is initialised properly.
|
|
|
|
user_site = site.getusersitepackages()
|
|
|
|
except AttributeError:
|
|
|
|
user_site = site.USER_SITE
|
2015-09-29 21:31:27 +02:00
|
|
|
user_dir = expanduser('~')
|
2014-06-26 14:15:31 +02:00
|
|
|
if WINDOWS:
|
2009-11-20 08:25:32 +01:00
|
|
|
bin_py = os.path.join(sys.prefix, 'Scripts')
|
2014-04-15 23:59:56 +02:00
|
|
|
bin_user = os.path.join(user_site, 'Scripts')
|
2009-11-20 08:25:32 +01:00
|
|
|
# buildout uses 'bin' on Windows too?
|
|
|
|
if not os.path.exists(bin_py):
|
|
|
|
bin_py = os.path.join(sys.prefix, 'bin')
|
2014-04-15 23:59:56 +02:00
|
|
|
bin_user = os.path.join(user_site, 'bin')
|
2014-09-10 17:15:09 +02:00
|
|
|
|
|
|
|
config_basename = 'pip.ini'
|
|
|
|
|
|
|
|
legacy_storage_dir = os.path.join(user_dir, 'pip')
|
|
|
|
legacy_config_file = os.path.join(
|
|
|
|
legacy_storage_dir,
|
|
|
|
config_basename,
|
2014-01-27 15:07:10 +01:00
|
|
|
)
|
2009-11-20 08:25:32 +01:00
|
|
|
else:
|
|
|
|
bin_py = os.path.join(sys.prefix, 'bin')
|
2014-04-15 23:59:56 +02:00
|
|
|
bin_user = os.path.join(user_site, 'bin')
|
2014-09-10 17:15:09 +02:00
|
|
|
|
|
|
|
config_basename = 'pip.conf'
|
|
|
|
|
|
|
|
legacy_storage_dir = os.path.join(user_dir, '.pip')
|
|
|
|
legacy_config_file = os.path.join(
|
|
|
|
legacy_storage_dir,
|
|
|
|
config_basename,
|
2014-01-27 15:07:10 +01:00
|
|
|
)
|
2016-11-06 18:24:43 +01:00
|
|
|
# Forcing to use /usr/local/bin for standard macOS framework installs
|
2011-12-10 13:56:03 +01:00
|
|
|
# Also log to ~/Library/Logs/ for use with the Console.app log viewer
|
2009-11-20 08:25:32 +01:00
|
|
|
if sys.platform[:6] == 'darwin' and sys.prefix[:16] == '/System/Library/':
|
|
|
|
bin_py = '/usr/local/bin'
|
2012-11-15 01:53:22 +01:00
|
|
|
|
2014-08-15 09:23:46 +02:00
|
|
|
site_config_files = [
|
2014-09-10 17:15:09 +02:00
|
|
|
os.path.join(path, config_basename)
|
2014-08-15 09:23:46 +02:00
|
|
|
for path in appdirs.site_config_dirs('pip')
|
|
|
|
]
|
|
|
|
|
2017-01-24 18:41:34 +01:00
|
|
|
venv_config_file = os.path.join(sys.prefix, config_basename)
|
|
|
|
new_config_file = os.path.join(appdirs.user_config_dir("pip"), config_basename)
|
|
|
|
|
2012-11-15 01:53:22 +01:00
|
|
|
|
2014-12-11 15:44:53 +01:00
|
|
|
def distutils_scheme(dist_name, user=False, home=None, root=None,
|
2015-11-16 17:39:44 +01:00
|
|
|
isolated=False, prefix=None):
|
2012-11-15 01:53:22 +01:00
|
|
|
"""
|
|
|
|
Return a distutils install scheme
|
|
|
|
"""
|
|
|
|
from distutils.dist import Distribution
|
|
|
|
|
|
|
|
scheme = {}
|
2014-12-11 15:44:53 +01:00
|
|
|
|
|
|
|
if isolated:
|
|
|
|
extra_dist_args = {"script_args": ["--no-user-cfg"]}
|
|
|
|
else:
|
|
|
|
extra_dist_args = {}
|
|
|
|
dist_args = {'name': dist_name}
|
|
|
|
dist_args.update(extra_dist_args)
|
|
|
|
|
|
|
|
d = Distribution(dist_args)
|
2013-11-05 08:40:26 +01:00
|
|
|
d.parse_config_files()
|
|
|
|
i = d.get_command_obj('install', create=True)
|
2014-01-27 15:07:10 +01:00
|
|
|
# NOTE: setting user or home has the side-effect of creating the home dir
|
|
|
|
# or user base for installations during finalize_options()
|
2013-08-31 17:17:02 +02:00
|
|
|
# ideally, we'd prefer a scheme class that has no side-effects.
|
2017-12-15 06:58:30 +01:00
|
|
|
assert not (user and prefix), "user={} prefix={}".format(user, prefix)
|
2013-04-18 07:50:22 +02:00
|
|
|
i.user = user or i.user
|
2015-12-17 00:15:57 +01:00
|
|
|
if user:
|
|
|
|
i.prefix = ""
|
2015-11-19 16:32:02 +01:00
|
|
|
i.prefix = prefix or i.prefix
|
2012-11-15 01:53:22 +01:00
|
|
|
i.home = home or i.home
|
2013-10-30 13:03:47 +01:00
|
|
|
i.root = root or i.root
|
2012-11-15 01:53:22 +01:00
|
|
|
i.finalize_options()
|
|
|
|
for key in SCHEME_KEYS:
|
2014-02-24 22:52:23 +01:00
|
|
|
scheme[key] = getattr(i, 'install_' + key)
|
2012-11-15 01:53:22 +01:00
|
|
|
|
2015-08-19 06:09:21 +02:00
|
|
|
# install_lib specified in setup.cfg should install *everything*
|
|
|
|
# into there (i.e. it takes precedence over both purelib and
|
|
|
|
# platlib). Note, i.install_lib is *always* set after
|
|
|
|
# finalize_options(); we only want to override here if the user
|
|
|
|
# has explicitly requested it hence going back to the config
|
|
|
|
if 'install_lib' in d.get_option_dict('install'):
|
2014-03-13 20:19:26 +01:00
|
|
|
scheme.update(dict(purelib=i.install_lib, platlib=i.install_lib))
|
|
|
|
|
2012-11-15 01:53:22 +01:00
|
|
|
if running_under_virtualenv():
|
2014-01-27 15:07:10 +01:00
|
|
|
scheme['headers'] = os.path.join(
|
|
|
|
sys.prefix,
|
|
|
|
'include',
|
|
|
|
'site',
|
|
|
|
'python' + sys.version[:3],
|
|
|
|
dist_name,
|
|
|
|
)
|
2012-11-15 01:53:22 +01:00
|
|
|
|
2013-10-31 13:49:23 +01:00
|
|
|
if root is not None:
|
2015-12-04 23:34:20 +01:00
|
|
|
path_no_drive = os.path.splitdrive(
|
|
|
|
os.path.abspath(scheme["headers"]))[1]
|
2013-10-31 13:49:23 +01:00
|
|
|
scheme["headers"] = os.path.join(
|
|
|
|
root,
|
2015-12-04 23:34:20 +01:00
|
|
|
path_no_drive[1:],
|
2013-10-31 13:49:23 +01:00
|
|
|
)
|
|
|
|
|
2012-11-15 01:53:22 +01:00
|
|
|
return scheme
|