Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 1.34 KB

File metadata and controls

73 lines (53 loc) · 1.34 KB

Installation

clevertools requires Python >=3.11.

Fastest local install

If you are already inside a suitable virtual environment, this is enough:

pip install -e .

Full development setup

Linux

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 .

macOS

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 .

Windows PowerShell

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 .

Windows Command Prompt

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 .

What gets installed

  • the clevertools package from src/
  • the dependencies listed in requirements.txt
  • an editable install so local source changes are available immediately

Verify the installation

python -c "import clevertools; print(clevertools.__all__[:5])"

Next steps

After installation, continue with:

  1. Getting Started
  2. Quickstart
  3. Tools