Current Path: > > opt > alt > python27 > lib > > python2.7 > site-packages > pip > _internal > > commands
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 |
---|---|---|---|---|
__init__.py | File | 4100 bytes | November 13 2023 21:11:11. | |
__init__.pyc | File | 3752 bytes | November 13 2023 21:11:11. | |
cache.py | File | 5676 bytes | November 13 2023 21:11:11. | |
cache.pyc | File | 6198 bytes | November 13 2023 21:11:11. | |
check.py | File | 1677 bytes | November 13 2023 21:11:11. | |
check.pyc | File | 2137 bytes | November 13 2023 21:11:11. | |
completion.py | File | 3081 bytes | November 13 2023 21:11:11. | |
completion.pyc | File | 3843 bytes | November 13 2023 21:11:11. | |
configuration.py | File | 9344 bytes | November 13 2023 21:11:11. | |
configuration.pyc | File | 10800 bytes | November 13 2023 21:11:11. | |
debug.py | File | 7314 bytes | November 13 2023 21:11:11. | |
debug.pyc | File | 8962 bytes | November 13 2023 21:11:11. | |
download.py | File | 4918 bytes | November 13 2023 21:11:11. | |
download.pyc | File | 5057 bytes | November 13 2023 21:11:11. | |
freeze.py | File | 3452 bytes | November 13 2023 21:11:11. | |
freeze.pyc | File | 4025 bytes | November 13 2023 21:11:11. | |
hash.py | File | 1843 bytes | November 13 2023 21:11:11. | |
hash.pyc | File | 3039 bytes | November 13 2023 21:11:11. | |
help.py | File | 1270 bytes | November 13 2023 21:11:11. | |
help.pyc | File | 1909 bytes | November 13 2023 21:11:11. | |
install.py | File | 28727 bytes | November 13 2023 21:11:11. | |
install.pyc | File | 22045 bytes | November 13 2023 21:11:11. | |
list.py | File | 11312 bytes | November 13 2023 21:11:11. | |
list.pyc | File | 11753 bytes | November 13 2023 21:11:11. | |
search.py | File | 5756 bytes | November 13 2023 21:11:11. | |
search.pyc | File | 6443 bytes | November 13 2023 21:11:11. | |
show.py | File | 6996 bytes | November 13 2023 21:11:11. | |
show.pyc | File | 7179 bytes | November 13 2023 21:11:11. | |
uninstall.py | File | 3311 bytes | November 13 2023 21:11:11. | |
uninstall.pyc | File | 3806 bytes | November 13 2023 21:11:11. | |
wheel.py | File | 6419 bytes | November 13 2023 21:11:11. | |
wheel.pyc | File | 6188 bytes | November 13 2023 21:11:11. |
� �Rec @@ s� d d l m Z d d l Z d d l Z d d l m Z d d l m Z d d l m Z d d l m Z e r� d d l m Z d d l m Z n d Z i d d 6d d 6d d 6Z d e f d � � YZ d S( i ( t absolute_importN( t Command( t SUCCESS( t get_prog( t MYPY_CHECK_RUNNING( t List( t ValuessD # pip {shell} completion start{script}# pip {shell} completion end s _pip_completion() {{ COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \ COMP_CWORD=$COMP_CWORD \ PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) }} complete -o default -F _pip_completion {prog} t bashsM function _pip_completion {{ local words cword read -Ac words read -cn cword reply=( $( COMP_WORDS="$words[*]" \ COMP_CWORD=$(( cword-1 )) \ PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null )) }} compctl -K _pip_completion {prog} t zshsu function __fish_complete_pip set -lx COMP_WORDS (commandline -o) "" set -lx COMP_CWORD ( \ math (contains -i -- (commandline -t) $COMP_WORDS)-1 \ ) set -lx PIP_AUTO_COMPLETE 1 string split \ -- (eval $COMP_WORDS[1]) end complete -fa "(__fish_complete_pip)" -c {prog} t fisht CompletionCommandc B@ s&