Installation¶
Requirements¶
- Python 3.10 or higher
Install from PyPI¶
The easiest way to install buildzr is using pip:
Install from Source¶
If you want to install the latest development version from source:
Development Installation¶
For development work, you’ll want to install the development dependencies:
This will install additional tools including:
mypy- Static type checkerpytest- Testing frameworkjsondiff- JSON comparison for testsdatamodel-code-generator- Code generation from schemas
Using Conda¶
If you prefer using Conda, you can create an environment using the provided environment.yml:
Verification¶
To verify your installation, try importing buildzr:
# norun
from buildzr.dsl import Workspace, SoftwareSystem, Person
print("buildzr installed successfully!")
Or check the version:
Next Steps¶
Now that you have buildzr installed, head over to the Quick Start Guide to create your first architecture diagram!