1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/common/pip.md
K.B.Dharun Krishna 2135714193
pages/*, style-guide: update contents, fix Markdown (#10492)
* pages/*, style-guide: update pages, fix Markdown (commit 1)

* Update pages

* style-guide.de: update page

* Apply suggestions from code review

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* pip3: remove search command

* rpm: update path placeholder

Co-authored-by: pixel <pixel+github@chrissx.de>

* Update pages/linux/pkgfile.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: pixel <pixel+github@chrissx.de>
2023-08-26 23:00:06 +05:30

696 B

pip

Python package manager. Some subcommands such as pip install have their own usage documentation. More information: https://pip.pypa.io.

  • Install a package (see pip install for more install examples):

pip install {{package}}

  • Install a package to the user's directory instead of the system-wide default location:

pip install --user {{package}}

  • Upgrade a package:

pip install --upgrade {{package}}

  • Uninstall a package:

pip uninstall {{package}}

  • Save installed packages to file:

pip freeze > {{requirements.txt}}

  • Show installed package info:

pip show {{package}}

  • Install packages from a file:

pip install --requirement {{requirements.txt}}