TLDR
Enter a command. For example: sort, llc, asdf, git blame someone else.

poetry

 
Manage Python packages and dependencies. More information: https://python-poetry.org/docs.
 
  • Create a new Poetry project in the directory with a specific name:
     
    poetry new {{project_name}}
     
  • Install a dependency and its subdependencies:
     
    poetry add {{dependency}}
     
  • Install a development dependency and its subdependencies:
     
    poetry add --dev {{dependency}}
     
  • Interactively initialize the current directory as a new Poetry project:
     
    poetry init
     
  • Get the latest version of all dependencies and update poetry.lock:
     
    poetry update
     
  • Execute a command inside the project's virtual environment:
     
    poetry run {{command}}

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.