-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

pip3


> Python package manager.

More information.


Find available packages:

pip3 search {package_name}

Install a package:

pip3 install {package_name}

Install a specific version of a package:

pip3 install {package_name}=={package_version}

Upgrade a package:

pip3 install --upgrade {package_name}

Uninstall a package:

pip3 uninstall {package_name}

Save the list of installed packages to a file:

pip3 freeze > {requirements.txt}

Install packages from a file:

pip3 install --requirement {requirements.txt}

Show installed package info:

pip3 show {package_name}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Mon May 20 22:35:37 2024