AI / Apache Burr Interview questions
How do you set up Burr to run its tracking UI locally?
Install Burr with the start extra, which pulls in the tracking client, tracking server, and UI dependencies:
pip install "burr[start]"
Then simply run the burr command from your terminal. It starts a local server on port 7241 and opens a browser window with the UI, pre-loaded with sample projects you can click through.
If you use Poetry, the start extra cannot be installed directly (a known Poetry limitation), so install the equivalent set of extras manually instead:
poetry add loguru "burr[tracking-client,tracking-server,streamlit,graphviz,hamilton]"
More Related questions...