當前位置: 首頁>>代碼示例>>Python>>正文


Python exceptions.PipError方法代碼示例

本文整理匯總了Python中pip._internal.exceptions.PipError方法的典型用法代碼示例。如果您正苦於以下問題:Python exceptions.PipError方法的具體用法?Python exceptions.PipError怎麽用?Python exceptions.PipError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pip._internal.exceptions的用法示例。


在下文中一共展示了exceptions.PipError方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: _determine_file

# 需要導入模塊: from pip._internal import exceptions [as 別名]
# 或者: from pip._internal.exceptions import PipError [as 別名]
def _determine_file(self, options, need_value):
        file_options = {
            kinds.USER: options.user_file,
            kinds.GLOBAL: options.global_file,
            kinds.VENV: options.venv_file
        }

        if sum(file_options.values()) == 0:
            if not need_value:
                return None
            # Default to user, unless there's a virtualenv file.
            elif os.path.exists(venv_config_file):
                return kinds.VENV
            else:
                return kinds.USER
        elif sum(file_options.values()) == 1:
            # There's probably a better expression for this.
            return [key for key in file_options if file_options[key]][0]

        raise PipError(
            "Need exactly one file to operate upon "
            "(--user, --venv, --global) to perform."
        ) 
開發者ID:HaoZhang95,項目名稱:Python24,代碼行數:25,代碼來源:configuration.py

示例2: main

# 需要導入模塊: from pip._internal import exceptions [as 別名]
# 或者: from pip._internal.exceptions import PipError [as 別名]
def main(args=None):
    if args is None:
        args = sys.argv[1:]

    # Configure our deprecation warnings to be sent through loggers
    deprecation.install_warning_logger()

    autocomplete()

    try:
        cmd_name, cmd_args = parseopts(args)
    except PipError as exc:
        sys.stderr.write("ERROR: %s" % exc)
        sys.stderr.write(os.linesep)
        sys.exit(1)

    # Needed for locale.getpreferredencoding(False) to work
    # in pip._internal.utils.encoding.auto_decode
    try:
        locale.setlocale(locale.LC_ALL, '')
    except locale.Error as e:
        # setlocale can apparently crash if locale are uninitialized
        logger.debug("Ignoring error %s when setting locale", e)
    command = commands_dict[cmd_name](isolated=check_isolated(cmd_args))
    return command.main(cmd_args) 
開發者ID:HaoZhang95,項目名稱:Python24,代碼行數:27,代碼來源:__init__.py

示例3: main

# 需要導入模塊: from pip._internal import exceptions [as 別名]
# 或者: from pip._internal.exceptions import PipError [as 別名]
def main(args=None):
    if args is None:
        args = sys.argv[1:]

    # Configure our deprecation warnings to be sent through loggers
    deprecation.install_warning_logger()

    autocomplete()

    try:
        cmd_name, cmd_args = parse_command(args)
    except PipError as exc:
        sys.stderr.write("ERROR: %s" % exc)
        sys.stderr.write(os.linesep)
        sys.exit(1)

    # Needed for locale.getpreferredencoding(False) to work
    # in pip._internal.utils.encoding.auto_decode
    try:
        locale.setlocale(locale.LC_ALL, '')
    except locale.Error as e:
        # setlocale can apparently crash if locale are uninitialized
        logger.debug("Ignoring error %s when setting locale", e)
    command = commands_dict[cmd_name](isolated=("--isolated" in cmd_args))
    return command.main(cmd_args) 
開發者ID:PacktPublishing,項目名稱:Mastering-Elasticsearch-7.0,代碼行數:27,代碼來源:__init__.py

示例4: _determine_file

# 需要導入模塊: from pip._internal import exceptions [as 別名]
# 或者: from pip._internal.exceptions import PipError [as 別名]
def _determine_file(self, options, need_value):
        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 any(
                os.path.exists(site_config_file)
                for site_config_file in get_configuration_files()[kinds.SITE]
            ):
                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."
        ) 
開發者ID:pantsbuild,項目名稱:pex,代碼行數:27,代碼來源:configuration.py

示例5: open_in_editor

# 需要導入模塊: from pip._internal import exceptions [as 別名]
# 或者: from pip._internal.exceptions import PipError [as 別名]
def open_in_editor(self, options, args):
        editor = self._determine_editor(options)

        fname = self.configuration.get_file_to_edit()
        if fname is None:
            raise PipError("Could not determine appropriate file.")

        try:
            subprocess.check_call([editor, fname])
        except subprocess.CalledProcessError as e:
            raise PipError(
                "Editor Subprocess exited with exit code {}"
                .format(e.returncode)
            ) 
開發者ID:HaoZhang95,項目名稱:Python24,代碼行數:16,代碼來源:configuration.py

示例6: _get_n_args

# 需要導入模塊: from pip._internal import exceptions [as 別名]
# 或者: from pip._internal.exceptions import PipError [as 別名]
def _get_n_args(self, args, example, n):
        """Helper to make sure the command got the right number of arguments
        """
        if len(args) != n:
            msg = (
                'Got unexpected number of arguments, expected {}. '
                '(example: "{} config {}")'
            ).format(n, get_prog(), example)
            raise PipError(msg)

        if n == 1:
            return args[0]
        else:
            return args 
開發者ID:HaoZhang95,項目名稱:Python24,代碼行數:16,代碼來源:configuration.py

示例7: _save_configuration

# 需要導入模塊: from pip._internal import exceptions [as 別名]
# 或者: from pip._internal.exceptions import PipError [as 別名]
def _save_configuration(self):
        # We successfully ran a modifying command. Need to save the
        # configuration.
        try:
            self.configuration.save()
        except Exception:
            logger.error(
                "Unable to save configuration. Please report this as a bug.",
                exc_info=1
            )
            raise PipError("Internal Error.") 
開發者ID:HaoZhang95,項目名稱:Python24,代碼行數:13,代碼來源:configuration.py


注:本文中的pip._internal.exceptions.PipError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。