Update README with GUI setup and execution instructions

This commit is contained in:
Francesco Grazioso 2025-02-25 14:44:36 +01:00
parent b933c34e77
commit 7685b4e121

View File

@ -78,22 +78,27 @@ Install directly from PyPI:
pip install StreamingCommunity
```
### Creating a Run Script
Create `run_streaming.py`:
```python
from StreamingCommunity.run import main
if __name__ == "__main__":
main()
```
### Running Script
Run the script:
```bash
python run_streaming.py
```
### Running the gui
Install requirements:
```bash
pip install -r requirements.txt
```
Run the gui:
```bash
python streaming_gui.py
```
### Updating via PyPI
```bash