最終更新:2025-02-19 (水) 13:10:14 (28d)  

pip install
Top / pip install

pip install tensorflow

オプション

  • -U, --upgradeUpgrade all specified packages to the newest available version. The handling of dependencies depends on the upgrade-strategy used.
    -r, --requirement <file>Install from the given requirements file. This option can be used multiple times.

引数の処理

  • When looking at the items to be installed, pip checks what type of item each is, in the following order:
    • Project or archive URL.
    • Local directory (which must contain a setup.py, or pip will report an error).
    • Local file (a sdist or wheel format archive, following the naming conventions for those formats).
    • A requirement, as specified in PEP 440.

インストール先

アップグレード

  • pip install --upgrade pip?