You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.txt 684 B

12345678910111213141516171819202122232425262728293031
  1. nilmdb: Non-Intrusive Load Monitor Database
  2. by Jim Paris <jim@jtan.com>
  3. Prerequisites:
  4. # Runtime and build environments
  5. sudo apt install python3.7 python3.7-dev python3.7-venv python3-pip
  6. # Optional: create a new Python virtual environment to isolate
  7. # dependencies. To leave the virtual environment, run "deactivate"
  8. python -m venv venv
  9. source venv/bin/activate
  10. # Install all Python dependencies from PyPI.
  11. pip3 install -r requirements.txt
  12. Test:
  13. python3 setup.py nosetests
  14. Install:
  15. sudo python3 setup.py install
  16. Usage:
  17. nilmdb-server --help
  18. nilmdb-fsck --help
  19. nilmtool --help
  20. See docs/wsgi.md for info on setting up a WSGI application in Apache.