Build Module
1. Consider Using Environment
Python PEP 405 proposes Virtual Environments. Think about using.
2. Clone Repository
git clone https://github.com/clauspruefer/python-dbpool.git
cd python-dbpool
3. Build As Non Root User
python3 setup.py sdist
4. Install As Root User
sudo pip3 install ./dist/package-0.1.tar.gz
or global on restrictive PIP package manager systems …
sudo pip3 install ./dist/package-0.1.tar.gz --break-system-packages
5. Run Tests
To ensure everything works correctly, run tests (after module installation).
pytest