Skip to main content

Python - Pipx

·1 min

Install and Run Python Applications in isolated environments - kind of like brew for Python applications.

  • Install pipx: python -m pip install --user pipx
  • Upgrade: python -m pip install --user pipx
  • Install application using pipx: pipx install youtube-dl
  • Run without installing: pipx run pycowsay moo. (Here, moo is the argument to the pycowsay application.)