Skip to content

Installation

Jason edited this page Oct 11, 2023 · 10 revisions

Install Python

Please make sure you have Python 3.9 or newer (python --version).

If the python command is not found try python3 instead. Otherwise install following this guide.

Install Pip

Pip is a package manager for Python. If the pip command is not found try pip3 instead. Otherwise install following this guide.

Install Holy

pip install holy-cli

# or:
python -m pip install holy-cli

If you see this warning:

WARNING: The script holy is installed in '/xxx/xxx/bin' which is not on PATH.

Then set your PATH environment variable to include this directory before running the holy command.

Quick fix:

echo "export PATH=\"`python3 -m site --user-base`/bin:\$PATH\"" >> ~/.bashrc
source ~/.bashrc

Alternatively you can run the pip install command with sudo.

Clone this wiki locally