TLDR
Enter a command. For example: git diff, xcaddy, od, git gc, lolcat.

pip3

 
Python package manager. More information: https://pip.pypa.io.
 
  • 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}}

This is a tldr pages (source, CC BY 4.0) web wrapper for cheat-sheets.org. All commands, popular commands, most used linux commands. Referrals. Progressive Web Application (PWA) version to install on your device.