From 7d03776194319fb837d6b7383c849d37c1f133cf Mon Sep 17 00:00:00 2001 From: MeganerdDev <114895043+MeganerdDev@users.noreply.github.com> Date: Fri, 5 Apr 2024 00:51:38 -0400 Subject: [PATCH] Create README.md --- python/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 python/README.md diff --git a/python/README.md b/python/README.md new file mode 100644 index 0000000..229af20 --- /dev/null +++ b/python/README.md @@ -0,0 +1,26 @@ +# night-vision (Python3) + +### Poetry virtual environment install guide +```bash +# Clone repo +$ git clone https://github.com/MeganerdDev/night-vision/ +$ cd night-vision/python + +# Setup poetry virtual environment +$ poetry lock +$ poetry install + +$ python3 night-vision.py +``` + +### Baremetal install guide +```bash +# Install dependncies +$ sudo apt install python3-xlib + +# Clone repo +$ git clone https://github.com/MeganerdDev/night-vision/ +$ cd night-vision/python + +$ python3 night-vision.py +```