In existing projects, the collected dependencies can be synchronized or updated with a single command.
# Synchronize packages
uv sync --all-extras
# Update packages
uv lock -U
Packages can be added using the following command
# Add package
uv add pydantic
### Remove Packages
Packages can also be removed.
```bash
# Remove package
uv remove pydantic
uv run pytest
uv run ruff check
# and fixing
uv run ruff check --fix