Current Path: > > lib > python3.8 > > site-packages > pip > _internal >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
cli | Directory | - | - | |
commands | Directory | - | - | |
distributions | Directory | - | - | |
models | Directory | - | - | |
network | Directory | - | - | |
operations | Directory | - | - | |
req | Directory | - | - | |
utils | Directory | - | - | |
vcs | Directory | - | - | |
__init__.py | File | 80 bytes | October 17 2023 18:30:24. | |
build_env.py | File | 7517 bytes | October 17 2023 18:30:24. | |
cache.py | File | 8371 bytes | October 17 2023 18:30:24. | |
collector.py | File | 18007 bytes | October 17 2023 18:30:24. | |
configuration.py | File | 14218 bytes | October 17 2023 18:30:24. | |
download.py | File | 20805 bytes | October 17 2023 18:30:24. | |
exceptions.py | File | 10247 bytes | October 17 2023 18:30:24. | |
index.py | File | 36887 bytes | October 17 2023 18:30:24. | |
legacy_resolve.py | File | 17234 bytes | October 17 2023 18:30:24. | |
locations.py | File | 5414 bytes | October 17 2023 18:30:24. | |
main.py | File | 1359 bytes | October 17 2023 18:30:24. | |
pep425tags.py | File | 15941 bytes | October 17 2023 18:30:24. | |
pyproject.py | File | 6490 bytes | October 17 2023 18:30:24. | |
self_outdated_check.py | File | 7934 bytes | October 17 2023 18:30:24. | |
wheel.py | File | 43080 bytes | October 17 2023 18:30:24. |
"""Primary application entrypoint. """ # The following comment should be removed at some point in the future. # mypy: disallow-untyped-defs=False from __future__ import absolute_import import locale import logging import os import sys from pip._internal.cli.autocompletion import autocomplete from pip._internal.cli.main_parser import parse_command from pip._internal.commands import create_command from pip._internal.exceptions import PipError from pip._internal.utils import deprecation logger = logging.getLogger(__name__) 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 = create_command(cmd_name, isolated=("--isolated" in cmd_args)) return command.main(cmd_args)
SILENT KILLER Tool