use correct package name for opencv

This commit is contained in:
Camryn Thomas 2025-01-31 18:02:18 -06:00
parent eb7c3e4c7a
commit fde1f10719
Signed by: cptlobster
GPG Key ID: 33D607425C830B4C
2 changed files with 15 additions and 1 deletions

View File

@ -5,12 +5,26 @@ of what sauron-cv seeks to accomplish.
## Installation
It is strongly recommended that you use a virtual environment. These instructions will assume you are using venv, you
can substitute this with your preferred environment management. You will need to make sure that the `virtualenv` package
is installed globally, either via pip or the `python3-virtualenv` package in your system package manager.
When first cloning this repo, run the following:
```shell
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
This will create a virtual environment, enter that virtual environment, and install the required packages.
If you start a new shell, you will need to re-enter the virtual environment:
```shell
source .venv/bin/activate
```
## Running
### Client

View File

@ -1,2 +1,2 @@
opencv
opencv-python
numpy