https://github.com/regis-amaral/python-scripts
https://github.com/regis-amaral/python-scripts
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/regis-amaral/python-scripts
- Owner: regis-amaral
- Created: 2023-11-07T23:13:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-10T19:15:22.000Z (about 2 years ago)
- Last Synced: 2025-01-21T08:45:06.730Z (11 months ago)
- Language: Python
- Size: 3.99 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Criar um ambiente virtual
```
python -m venv my_venv
```
Ativar um ambiente virtual
```
source my_venv/bin/activate
```
Salvar as informações de bibliotecas instaladas
```
pip freeze > requirements.txt
```
Instalar as bibliotecas necessárias
```
pip install -r requirements.txt
```