-
-
Notifications
You must be signed in to change notification settings - Fork 2
Installation
Jason edited this page Oct 11, 2023
·
10 revisions
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.
Pip is a package manager for Python. If the pip command is not found try pip3 instead. Otherwise install following this guide.
pip install holy-cli
# or:
python -m pip install holy-cliIf 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.