LovinData - Simplified Full Stack Data Engineering
Please install VSCode and its extensions:
- Even Better TOML
- Prettier
Please install Python, pip and venv.
sudo apt install python3 python3-pip python3-venv
Please install Poetry with the official installer.
curl -sSL https://install.python-poetry.org | python3 -
echo -e '\nexport PATH="/home/lovindata/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
poetry config virtualenvs.in-project true
To create your Python environment and install dependencies:
poetry install
To update dependencies:
poetry update
To clear poetry cache:
poetry cache clear --all --quiet .
To serve the blog, run the command:
poetry run mkdocs serve