Help Center/ ModelArts/ FAQs/ Notebook/ pip and Common Commands
Updated on 2026-07-02 GMT+08:00

pip and Common Commands

pip is a common Python package management tool. It allows you to search for, download, install, and uninstall Python packages.

Common pip commands:

pip --help # Obtain help information.
pip install SomePackage==XXXX # Install a specified version.
pip install SomePackage # Install the latest version.
pip uninstall SomePackage # Uninstall a software version.

For other commands, run the pip --help command.