dmorais8/ComMoveis2020_5_Projeto01
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
SOBRE
Codigos do Projeto 01 da disciplina de Comunicacoes Moveis no semestre 2020.5
Estrutura do Projeto
projeto01/
├── Entrega_01_02
│ ├── main.py
│ └── README.txt
├── Entrega_03
│ ├── main.py
│ └── README.txt
├── Entrega_04
│ ├── main.py
│ └── README.txt
├── README.txt
└── requirements.txt
Requisitos:
- Windows
* Python 3.6 ou mais recente
- Linux (debian like)
* Python 3.6 ou mais recente
* python3-venv
Preparacao do ambiente
comandos(windows):
cd projeto01
python -m venv venv
venv\Scripts\activate.bat
pip install -r requirements.txt
comandos(linux):
cd projeto01
sudo apt-get install python3-venv python3-tk
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
ACESSANDO CADA ENTREGA
A partir da raiz do projeto
- Entregas 01 e 02
cd Entrega_01_02
- Entregas 03
cd Entrega_03
- Entregas 04
cd Entrega_04