View Single Post
  #9  
Old 08-18-2023, 09:30 PM
Indefinite Indefinite is offline
Kobold

Indefinite's Avatar

Join Date: Apr 2014
Posts: 142
Default

It looks like setup.py installation may be deprecated:
Quote:
setup.py install is deprecated. Use build and pip and other standards-based tools.
If you're using Debian 12 try using:
Code:
python3 -m venv .venv;. .venv/bin/activate; python3 -m pip install -e .
If all else fails you should be able to grab it from PyPi using
Code:
pipx install eqalert
__________________
Last edited by Indefinite; 08-18-2023 at 09:37 PM..
Reply With Quote