Added 'pip install build' to development instructions, otherwise python -m build won't work

This commit is contained in:
Juraj Borza
2025-05-02 18:28:17 +02:00
parent b1b9b8d42f
commit 56b336a529
+1
View File
@@ -160,6 +160,7 @@ If you'd like to modify the code and contribute to development, you can [downloa
```bash ```bash
# Go to the directory where you extracted the repository and run: # Go to the directory where you extracted the repository and run:
pip install -e . # Installs the package in editable mode pip install -e . # Installs the package in editable mode
pip install build # Install the build package
python -m build # Builds the package in dist folder (optional) python -m build # Builds the package in dist folder (optional)
abogen # Opens the GUI abogen # Opens the GUI
``` ```