Python 언어부터 시작해 보겠습니다. Python은 배우기 쉬울 뿐만 아니라 수천 개의 라이브러리를 가지고 있기 때문에 인기가 있습니다.
이러한 라이브러리는 통합 도구와 동일하며 설치되어 있는 한 Python에서 사용할 수 있습니다. 바퀴를 다시 만들 필요 없이 다양한 문제를 처리할 수 있으며, 커뮤니티의 지속적인 업데이트와 유지 관리를 통해 일부 라이브러리는 엔터프라이즈급 응용 프로그램과 거의 경쟁할 정도로 더욱 강력해지고 있습니다.
그러면 이러한 도구 라이브러리를 다운로드하고 설치하는 방법은 무엇입니까? 이는 모든 라이브러리 설치가 시작되는 PyPi(Python Package Index)라는 통합 "저장소"에 배치됩니다.
창고가 있으면 관리자도 필요한데, pip가 그런 역할입니다. pip는 PyPi에서 라이브러리를 가져와 Python에 설치합니다. 또한 업데이트, 보기, 검색, 제거 등 설치된 라이브러리를 관리할 수도 있습니다.
다음은 참고용으로 pip 사용에 대한 10가지 상식과 팁을 요약한 것입니다.
Python 3.4부터 pip는 이미 Python에 내장되어 있으므로 다시 설치할 필요가 없습니다.
Python 버전에 pip가 없으면 다음 두 가지 방법을 사용하여 설치할 수 있습니다.
pip 다운로드 주소: https://pypi.org/project/pip/#files
단, 아직 Python3.4 이하 버전을 사용하고 계시다면 최신 안정 버전의 Python(https:/ /www.python.org/downloads/). 그렇지 않으면 매일 더 많은 기술 부채가 추가됩니다.
pip 버전이 너무 낮은 경우 pip install --upgrade pip 또는 pip install -U pip를 사용하여 현재 버전을 업그레이드할 수 있습니다.
$ pip install -U pip Looking in indexes: https://pypi.python.org/simple Requirement already satisfied: pip in ./test/lib/python3.8/site-packages (21.1.1) Collecting pip Using cached pip-22.0.4-py3-none-any.whl (2.1 MB) Installing collected packages: pip Attempting uninstall: pip Found existing installation: pip 21.1.1 Uninstalling pip-21.1.1: Successfully uninstalled pip-21.1.1 Successfully installed pip-22.0.4
pip를 사용하여 다음 명령문을 실행할 수 있습니다: pip install package_name
패키지 버전 지정: pip install package_name==1.1.2
예를 들어, I 버전 3.4.1 matplotlib를 설치하려면: pip install matplotlib==3.4.1
프로젝트에 많은 라이브러리를 설치해야 하는 경우 일괄 설치할 수 있습니다: pip install -r 요구 사항.txt
파일의 콘텐츠 형식은 다음과 같습니다.
# This is a comment # Specify a diffrent index -i http://dist.repoze.org/zope2/2.10/simple # Package with versions tensorflow==2.3.1 uvicorn==0.12.2 fastapi==0.63.0 pkg1 pkg2 pkg3>=1.0,<=2.0 # It is possible to refer to specific local distribution paths. ./downloads/numpy-1.9.2-cp34-none-win32.whl # It is possible to refer to other requirement files or constraints files. -r other-requirements.txt -c constraints.txt # It is possible to specify requirements as plain names. pytest pytest-cov beautifulsoup4
설치된 라이브러리를 다시 제거할 수 있습니다. $ pip uninstall package_name
현재 라이브러리 버전 업그레이드:
$ pip install --upgrade package_name
또는
$ pip install -U package_name
때때로 현재 환경에 설치된 모든 패키지를 출력하고 싶거나, 요구사항 파일을 생성한 후 해당 파일을 통해 다른 환경에 설치하고 싶을 때가 있습니다. pip 동결 명령을 사용할 수 있습니다:
# List packages $ pip freeze docutils==0.11 Jinja2==2.7.2 MarkupSafe==0.19 Pygments==1.6 Sphinx==1.2.2 # Generate requirements.txt file $ pip freeze > requirements.txt
패키지는 정렬된 순서(대소문자 구분 안 함)로 나열됩니다. 전체적으로 설치되지 않은 패키지만 나열하려면 -l/--local을 사용하세요.
pip show -f package_name을 사용하여 패키지 정보를 나열할 수 있습니다:
$ pip show -f pyyaml Name: PyYAML Version: 5.4.1 Summary: YAML parser and emitter for Python Home-page: https://pyyaml.org/ Author: Kirill Simonov Author-email: xi@resolvent.net License: MIT Location: /private/tmp/test/lib/python3.8/site-packages Requires: Required-by: awscli Files: PyYAML-5.4.1.dist-info/INSTALLER PyYAML-5.4.1.dist-info/LICENSE PyYAML-5.4.1.dist-info/METADATA PyYAML-5.4.1.dist-info/RECORD PyYAML-5.4.1.dist-info/WHEEL PyYAML-5.4.1.dist-info/top_level.txt ...
현재 설치된 라이브러리에서 업그레이드해야 하는 라이브러리를 확인하세요.
$ pip list -o PackageVersion Latest Type ---------- ------- ------ ----- docutils 0.15.20.18.1 wheel PyYAML 5.4.1 6.0wheel rsa4.7.2 4.8wheel setuptools 56.0.062.1.0 wheel
설치된 라이브러리의 호환성 종속성을 확인하려면 pip check package-name을 사용할 수 있습니다.
$ pip check awscli No broken requirements found.
패키지 이름을 지정하지 않으면 모든 패키지의 호환성이 확인됩니다.
$ pip check pyramid 1.5.2 requires WebOb, which is not installed.
라이브러리를 지정된 위치에 로컬로 다운로드하고 whl 형식으로 저장합니다. pip download package_name -d "path"
$ pip download PyYAML-d "/tmp/" Looking in indexes: https://pypi.python.org/simple Collecting PyYAML Downloading PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl (192 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 192.2/192.2 KB 4.7 MB/s eta 0:00:00 Saved ./PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl Successfully downloaded PyYAML $ ls /tmp/PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl /tmp/PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl
위 내용은 Python Pip 사용을 위한 10가지 팁의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!