-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Sofia Saraiva edited this page Oct 12, 2023
·
2 revisions
Documentação para mecher no GitHub Action:
Comandos da VM do Python
-
Criação da VM
python -m venv venv
-
Ativar VM nas diferentes Máquinas:
- No MacOS, usando o bash shell: source /path/to/venv/bin/activate
- No MacOS, usando o csh shell: source /path/to/venv/bin/activate.csh
- No MacOS, usando o fish shell: source /path/to/venv/bin/activate.fish
- No Windows usando o Prompt de Comando: path\to\venv\Scripts\activate.bat
- No Windows usando o PowerShell: path\to\venv\Scripts\Activate.ps1
-
Instalalndo Dependencias
pip install -r requirements.txt
-
Atualizando Dependencias
pip freeze > requirements.txt