23 lines
236 B
Markdown
23 lines
236 B
Markdown
# openvidu-basic-python
|
|
|
|
Create a python3 environment and activate it
|
|
|
|
```
|
|
python3 -m venv venv
|
|
```
|
|
|
|
```
|
|
. venv/bin/activate
|
|
```
|
|
|
|
Install dependencies
|
|
|
|
```
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
Run the application
|
|
|
|
```
|
|
python3 app.py
|
|
``` |