Created
April 9, 2024 18:37
-
-
Save jedie/e0ee848b8125d2f056466f781ffd9122 to your computer and use it in GitHub Desktop.
Helper script to start https://github.com/leswright1977/PyThermalCamera
This file contains hidden or 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
#!/bin/bash | |
set -x | |
# Crate a virtual environment: | |
python3 -m venv .venv | |
# Update pip: | |
.venv/bin/pip install -U pip | |
# Install https://pypi.org/project/opencv-python/ in virtual environment: | |
.venv/bin/pip install -U opencv-python | |
# Run https://github.com/leswright1977/PyThermalCamera script: | |
# CHANGE DEVICE NUMBER! | |
.venv/bin/python3 ./src/tc001v4.2.py --device 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment