Python 言語から始めましょう。 Python が人気があるのは、学習が簡単であるだけでなく、何千ものライブラリがあるからでもあります。
これらのライブラリは統合ツールに相当し、インストールされていれば Python で使用できます。これらは、車輪の再発明を必要とせずにさまざまな問題に対処でき、コミュニティによる継続的な更新とメンテナンスにより、一部のライブラリはさらに強力になり、エンタープライズ グレードのアプリケーションにほぼ匹敵します。
では、これらのツール ライブラリをダウンロードしてインストールするにはどうすればよいでしょうか?これらは、すべてのライブラリのインストールが開始される PyPi (Python Package Index) と呼ばれる統合された「リポジトリ」に配置されます。
ウェアハウスを構築した後は管理者が必要になります。pip はそのような役割です。 pip は PyPi からライブラリを取得し、Python にインストールします。また、インストールされたライブラリの更新、表示、検索、アンインストールなどを管理することもできます。
以下に、参考のために pip を使用するための 10 の常識とヒントをまとめます。
Python 3.4 以降、pip は Python に組み込まれているため、再度インストールする必要はありません。
お使いの Python バージョンに pip がない場合は、次の 2 つの方法を使用してインストールできます。
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
たとえば、matplotlib のバージョン 3.4.1 をインストールしたいとします: pip install matplotlib==3.4.1
プロジェクトで多くのライブラリをインストールする必要がある場合は、バッチでインストールできます: pip install -rrequirements.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 パッケージを使用できます。 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 中国語 Web サイトの他の関連記事を参照してください。