Skip to content

Installing Pekora

With pipx recommended

Install pipx, then run:

pipx install pekora # (1)!
  1. If you prefer, you can also run Pekora ephemerally without installing it:
    pipx run pekora
    
    You'll have to do this every time you want to use Pekora, though.

With Homebrew macOS and Linux only

Homebrew users can install Pekora from the Houkago Tea Tap.

brew tap celsiusnarhwal/htt
brew install pekora # (1)!
  1. Alternatively, you can do:
    brew install celsiusnarhwal/htt/pekora
    

With pip or other Python package managers

Just because you can doesn't mean you should. But you definitely can.1

pip install pekora
poetry add pekora
pdm add pekora

With Git please reconsider

Cloning Pekora from GitHub and building it from source is, technically speaking, an option.1

Install Poetry, then clone Pekora's repository:

git clone https://github.com/celsiusnarhwal/pekora
gh repo clone celsiusnarhwal/pekora

You'll have to install Pekora's dependencies yourself:

cd pekora && poetry install --only main

  1. Please don't open any issues or ask for any support if you choose to install Pekora this way.