Skip to content

Instantly share code, notes, and snippets.

@jedie
Created April 9, 2024 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedie/e0ee848b8125d2f056466f781ffd9122 to your computer and use it in GitHub Desktop.
Save jedie/e0ee848b8125d2f056466f781ffd9122 to your computer and use it in GitHub Desktop.
#!/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