ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Python pip 명령어
    Search: Python Python 2021. 3. 10. 09:34

     

    Python pip 대상 라이브러리 버전 확인

     

     

    용법:
      pip <명령> [옵션]
    
    Commands:
     
      
    
    명령 :
      install 패키지를 설치합니다.
      download 패키지를 다운로드합니다.
      uninstall 패키지를 제거합니다.
      freeze 설치된 패키지를 요구 사항 형식으로 출력합니다.
      list 설치된 패키지를 나열합니다.
      show 설치된 패키지에 대한 정보를 표시합니다.
      check 설치된 패키지에 호환되는 종속성이 있는지 확인하십시오.
      config 로컬 및 글로벌 구성을 관리합니다.
      search PyPI에서 패키지를 검색합니다.
      cache pip의 휠 캐시를 검사하고 관리합니다.
      wheel 요구 사항에 따라 휠을 만드십시오.
      hash 패키지 아카이브의 해시를 계산합니다.
      completion 명령 완료에 사용되는 도우미 명령입니다.
      debug 디버깅에 유용한 정보를 표시합니다.
      help 명령에 대한 도움말을 표시합니다.
    
    
    일반 옵션:
      -h, --help 도움말을 표시합니다.
      --isolated 격리 모드에서 pip 실행, 무시
                                  환경 변수 및 사용자 구성.
      -v, --verbose 더 많은 출력을 제공합니다. 옵션은 부가 적이며
                                  최대 3 회 사용.
      -V, --version 버전을 표시하고 종료합니다.
      -q, --quiet 더 적은 출력을 제공합니다. 옵션은 부가 적이며
                                  최대 3 회 사용 (WARNING,
                                  ERROR 및 CRITICAL 로깅 수준).
      --log <path> 자세한 추가 로그의 경로입니다.
      --proxy <proxy> 형식으로 프록시 지정
                                  [user : passwd @] proxy.server : port.
      --retries <재시도> 각 연결이 수행해야하는 최대 재시도 횟수
                                  시도 (기본값 5 회).
      --timeout <sec> 소켓 시간 제한을 설정합니다 (기본값 15 초).
      --exists-action <action> 경로가 이미 존재하는 경우 기본 동작 :
                                  (s) witch, (i) gnore, (w) ipe, (b) ackup, (a) bort.
      --trusted-host <hostname>이 호스트 또는 호스트 : 포트 쌍을 신뢰할 수있는 것으로 표시합니다.
                                  유효하지 않거나 HTTPS가 없더라도.
      --cert <path> 대체 CA 번들의 경로입니다.
      --client-cert <path> 단일 파일 인 SSL 클라이언트 인증서 경로
                                  개인 키 및 인증서 포함
                                  PEM 형식으로.
      --cache-dir <dir> 캐시 데이터를 <dir>에 저장합니다.
      --no-cache-dir 캐시를 비활성화합니다.
      --disable-pip-version-check
                                  PyPI를 주기적으로 확인하여 결정하지 마십시오.
                                  pip의 새 버전을 사용할 수 있는지 여부
                                  다운로드. --no-index와 함축됩니다.
      --no-color 컬러 출력 억제
      -no-python-version-warning
                                  향후 지원 중단 경고 무음
                                  지원되지 않는 Python.
    
    C : \ Windows \ System32>

     

     

    
    Usage:
      pip <command> [options]
    
    Commands:
      install                     Install packages.
      download                    Download packages.
      uninstall                   Uninstall packages.
      freeze                      Output installed packages in requirements format.
      list                        List installed packages.
      show                        Show information about installed packages.
      check                       Verify installed packages have compatible dependen
    cies.
      config                      Manage local and global configuration.
      search                      Search PyPI for packages.
      cache                       Inspect and manage pip's wheel cache.
      wheel                       Build wheels from your requirements.
      hash                        Compute hashes of package archives.
      completion                  A helper command used for command completion.
      debug                       Show information useful for debugging.
      help                        Show help for commands.
    
    General Options:
      -h, --help                  Show help.
      --isolated                  Run pip in an isolated mode, ignoring
                                  environment variables and user configuration.
      -v, --verbose               Give more output. Option is additive, and can be
                                  used up to 3 times.
      -V, --version               Show version and exit.
      -q, --quiet                 Give less output. Option is additive, and can be
                                  used up to 3 times (corresponding to WARNING,
                                  ERROR, and CRITICAL logging levels).
      --log <path>                Path to a verbose appending log.
      --proxy <proxy>             Specify a proxy in the form
                                  [user:passwd@]proxy.server:port.
      --retries <retries>         Maximum number of retries each connection should
                                  attempt (default 5 times).
      --timeout <sec>             Set the socket timeout (default 15 seconds).
      --exists-action <action>    Default action when a path already exists:
                                  (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
      --trusted-host <hostname>   Mark this host or host:port pair as trusted,
                                  even though it does not have valid or any HTTPS.
      --cert <path>               Path to alternate CA bundle.
      --client-cert <path>        Path to SSL client certificate, a single file
                                  containing the private key and the certificate
                                  in PEM format.
      --cache-dir <dir>           Store the cache data in <dir>.
      --no-cache-dir              Disable the cache.
      --disable-pip-version-check
                                  Don't periodically check PyPI to determine
                                  whether a new version of pip is available for
                                  download. Implied with --no-index.
      --no-color                  Suppress colored output
      --no-python-version-warning
                                  Silence deprecation warnings for upcoming
                                  unsupported Pythons.
    
    C:\Windows\System32>
    

     

    'Python' 카테고리의 다른 글

    Python Print formatting  (0) 2021.04.03
    Python Matplotlib  (0) 2021.04.03
    Python - Pickle  (0) 2021.04.03
    Python pip 대상 라이브러리 버전 확인  (0) 2021.03.10
    Python 저장소 악성 코드 발견  (0) 2021.03.05
    Python - Coroutine (Python 2.4)  (0) 2020.11.07
    Python - Coroutine (Python 2.2)  (0) 2020.11.07
    Python - inspect  (0) 2020.09.09

    댓글