Repositório com notebooks para Python Brasil 2025. Use Python 3.11 de preferência.
Escolha seu método preferido para configurar o ambiente de desenvolvimento:
- Instale o Poetry:
curl -sSL https://install.python-poetry.org | python3 - - Instale as dependências:
poetry install - Inicie o shell:
poetry shell - Inicie o Jupyter:
jupyter lab
- Crie um ambiente virtual:
python3 -m venv .venv - Ative-o:
source .venv/bin/activate - Instale as dependências:
pip install -r requirements.txt - Inicie o Jupyter:
jupyter lab
- Instale o uv:
pip install uv - Sincronize as dependências:
uv sync - Ative o ambiente:
source .venv/bin/activate - Inicie o Jupyter:
jupyter lab
Todas as opções requerem Python 3.11 ou 3.12. Os notebooks estão na pasta
notebooks/; abra-os no Jupyter Lab durante a sessão.