Forrest logo
tool overview
On this page you find all important commands for the CLI tool pip. If the command you are looking for is missing please ask our AI.

pip

pip is the package installer for Python. You can use pip to install packages from the Python Package Index and other indexes.

List of commands for pip:

  • 360monitoring:install Install the 360 Monitoring CLI client.
    $ pip install 360monitoringcli
    $ 360monitoring config save --api-key ${api-key}
    try on your machine
    explain this command
  • 360monitoring:update Update the 360 Monitoring CLI client.
    $ pip install 360monitoringcli --upgrade
    try on your machine
    explain this command
  • pip-install:tldr:18c5d pip-install: Install packages listed in a file.
    $ pip install --requirement ${path-to-requirements-txt}
    try on your machine
    explain this command
  • pip-install:tldr:1cd47 pip-install: Install packages from an URL or local file archive (.tar.gz | .whl).
    $ pip install --find-links ${select}
    try on your machine
    explain this command
  • pip-install:tldr:2db94 pip-install: Install the local package in the current directory in develop (editable) mode.
    $ pip install --editable ${-}
    try on your machine
    explain this command
  • pip-install:tldr:541ce pip-install: Install a package.
    $ pip install ${package_name}
    try on your machine
    explain this command
  • pip-install:tldr:7cb20 pip-install: Install a specific version of a package.
    $ pip install ${package_name}==${package_version}
    try on your machine
    explain this command
  • pip-uninstall:tldr:4f7c9 pip-uninstall: Uninstall package without asking for confirmation.
    $ pip uninstall --yes ${package_name}
    try on your machine
    explain this command
  • pip-uninstall:tldr:b04dd pip-uninstall: Uninstall a package.
    $ pip uninstall ${package_name}
    try on your machine
    explain this command
  • pip-uninstall:tldr:f3fcb pip-uninstall: Uninstall packages listed in a specific file.
    $ pip uninstall --requirement ${path-to-requirements-txt}
    try on your machine
    explain this command
  • pip:tldr:5807c pip: Show installed package info.
    $ pip show ${package_name}
    try on your machine
    explain this command
  • pip:tldr:a98c2 pip: Save installed packages to file.
    $ pip freeze > ${requirements-txt}
    try on your machine
    explain this command
  • pip:tldr:ab999 pip: Upgrade a package.
    $ pip install --upgrade ${package_name}
    try on your machine
    explain this command
  • pip:tldr:eb80f pip: Install a package to the user's directory instead of the system-wide default location.
    $ pip install --user ${package}
    try on your machine
    explain this command
tool overview