Skip to content

Install Templates

There are several ways to install templates. You can install them from remote repository or from local zip archive or template folder. For local option download or clone a template package (e.g., csv_analysis_template/) as a folder or a zip file and install it:

Install template from remote GitHub Template Repository

Templates are stored in this github prich-templates repository

  • List Available Remote Templates for Installation

    bash prich list --remote

    bash prich list --remote --tag code --tag review

  • Install Template from prich-templates Repository

    bash prich install <template_id> --remote

    bash prich install <template_id> --remote --global

Install from a local template zip file

prich install <template-zip-file>.zip

Install from a local template folder

prich install <template-folder>
prich install ./code-review

This copies files, sets up venvs, and installs dependencies - if python is used there.

Reinstall template

To reinstall template use --force flag together with the selected install template, this will reinstall the template and it's isolated venv (if any).

prich install code-review --remote --force
prich install ./code-review --force
prich install code-review.zip --force