本文整理匯總了Python中pip._internal.locations.running_under_virtualenv方法的典型用法代碼示例。如果您正苦於以下問題:Python locations.running_under_virtualenv方法的具體用法?Python locations.running_under_virtualenv怎麽用?Python locations.running_under_virtualenv使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pip._internal.locations
的用法示例。
在下文中一共展示了locations.running_under_virtualenv方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: load_selfcheck_statefile
# 需要導入模塊: from pip._internal import locations [as 別名]
# 或者: from pip._internal.locations import running_under_virtualenv [as 別名]
def load_selfcheck_statefile():
if running_under_virtualenv():
return VirtualenvSelfCheckState()
else:
return GlobalSelfCheckState()
示例2: _determine_file
# 需要導入模塊: from pip._internal import locations [as 別名]
# 或者: from pip._internal.locations import running_under_virtualenv [as 別名]
def _determine_file(self, options, need_value):
# Convert legacy venv_file option to site_file or error
if options.venv_file and not options.site_file:
if running_under_virtualenv():
options.site_file = True
deprecated(
"The --venv option has been deprecated.",
replacement="--site",
gone_in="19.3",
)
else:
raise PipError(
"Legacy --venv option requires a virtual environment. "
"Use --site instead."
)
file_options = [key for key, value in (
(kinds.USER, options.user_file),
(kinds.GLOBAL, options.global_file),
(kinds.SITE, options.site_file),
) if value]
if not file_options:
if not need_value:
return None
# Default to user, unless there's a site file.
elif os.path.exists(site_config_file):
return kinds.SITE
else:
return kinds.USER
elif len(file_options) == 1:
return file_options[0]
raise PipError(
"Need exactly one file to operate upon "
"(--user, --site, --global) to perform."
)