-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d36483e
commit 7d03776
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |