-
Joined
Apr 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Criar o ambiente virtual: python -m venv venv | |
| 2. Ativar o ambiente: | |
| ◦ Windows: venv\Scripts\activate | |
| ◦ Linux/Mac: source venv/bin/activate | |
| 3. Instalar o Django: pip install django | |
| 4. Iniciar o projeto: django-admin startproject nome_projeto . (O ponto final evita a criação de pastas extras). | |
| 5. Criar o app de cadastros: python manage.py startapp core |