Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucascompython/tp1-sdr
https://github.com/lucascompython/tp1-sdr
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lucascompython/tp1-sdr
- Owner: lucascompython
- Created: 2024-04-08T22:35:31.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-04-25T22:33:40.000Z (8 months ago)
- Last Synced: 2024-04-26T01:29:47.744Z (8 months ago)
- Language: Python
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instruções
```bash
# se tiverem o github CLI instalado e logado
gh repo clone https://github.com/lucascompython/tp1-sdrcd tp1-sdr
# Criar ambiente virtual
python3 -m venv .venv# Ativar ambiente virtual
# Linux
source .venv/bin/activate
# Windows
.venv\Scripts\activate# Instalar dependências
cd server
pip install -r requirements.txt# Servidor
python3 server/main.py# Cliente
python3 terminal-client/main.py
```