Installing Addok
Dependencies
- Redis >= 7.2 <= 8.0
- python >= 3.9 <= 3.14
Install using a virtualenv
-
Install dependencies:
sudo apt-get install redis-server python3 python3-dev python3-pip python3-venv -
Create a virtual environment:
python3 -m venv addok -
Activate the virtual environment:
source addok/bin/activate -
install python packages:
pip install addokFor production environments, it's recommended to install the performance optimization extras:
pip install addok[perf]This installs
hiredis, a fast C parser for Redis that significantly improves performance.
What to do next?
Now you certainly want to configure Addok, install plugins or directly import data.
See also the full installation tutorial.