-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
27 lines (25 loc) · 798 Bytes
/
Copy pathrequirements.txt
File metadata and controls
27 lines (25 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Python dependencies for the Autonomous Insect Camera Trap
#
# Install with:
# pip3 install -r requirements.txt --break-system-packages
#
# NOTE on picamera2:
# picamera2 is distributed via apt on Raspberry Pi OS, not pip.
# Install it with:
# sudo apt install -y python3-picamera2
# If picamera2 is unavailable, the camera/factory.py module
# automatically falls back to rpicam-jpeg / libcamera-jpeg
# (see camera/subprocess_backend.py) which only requires opencv.
#
# NOTE on torch/torchvision:
# On 32-bit Raspberry Pi OS, install the CPU-only ARM wheels.
# This can take 20-60 minutes to build/install on a Pi 3 B+.
torch
torchvision
opencv-python
numpy
pandas
flask
# Only required for scripts/plot_detections.py (run on a desktop machine,
# not on the Pi)
matplotlib