BirdNET-stream/INSTALL.md

47 lines
866 B
Markdown
Raw Normal View History

2022-08-12 18:01:01 +02:00
# Installation Guide for BirdNET-stream
2022-08-13 07:48:06 +02:00
This guide allow you to install BirdNET-stream step by step on your debian based system.
For a one-liner installation, you can use the following command:
```bash
curl -sL https://raw.githubusercontent.com/birdnet-stream/birdnet-stream/master/install.sh | bash
```
2022-08-12 18:01:01 +02:00
## Requirements
- git
- ffmpeg
- python3
## Install process
### Install python requirements
```bash
sudo apt-get update
sudo apt-get install python3-dev python3-pip
sudo pip3 install --upgrade pip
```
### Install ffmpeg
```bash
sudo apt-get install ffmpeg
```
### Clone BirdNET-stream repository
```bash
2022-08-13 07:48:06 +02:00
git clone --recurse-submodules https://forge.chapril.org/UncleSamulus/BirdNET-stream.git
```
2022-08-12 18:01:01 +02:00
### Setup python virtualenv and packages
```bash
python3 -m venv .venv/birdnet-stream
source .venv/birdnet-stream
pip install -r requirements.txt
```