clevertools requires Python >=3.11.
If you are already inside a suitable virtual environment, this is enough:
pip install -e .python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -e .python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install -e .py -m venv .venv
.venv\Scripts\Activate.ps1
py -m pip install --upgrade pip
py -m pip install -r requirements.txt
py -m pip install -e .py -m venv .venv
.venv\Scripts\activate.bat
py -m pip install --upgrade pip
py -m pip install -r requirements.txt
py -m pip install -e .- the
clevertoolspackage fromsrc/ - the dependencies listed in
requirements.txt - an editable install so local source changes are available immediately
python -c "import clevertools; print(clevertools.__all__[:5])"After installation, continue with: