Installation
Do I need to install EBA?
Yes, if you want to reproduce or update the data, or sample custom communities from the graph.
No, if you only want to use the communities, or the sample models we provide.
Build from source code
You may take the following steps to build EBA from the source code.
-
Clone the git repository.
- Linux
- macOS
- Windows
git clone https://github.com/b1aab/eba && cd ebagit clone https://github.com/b1aab/eba && cd ebagit clone https://github.com/b1aab/eba ; cd eba -
Build EBA.
- Linux
- macOS
- Windows
dotnet publish ./EBA/EBA.csproj -c Release -r linux-x64 --self-contained true -o "build" -p:WarningLevel=0dotnet publish ./EBA/EBA.csproj -c Release -r osx-arm64 --self-contained true -o "build" -p:WarningLevel=0dotnet publish .\EBA\EBA.csproj -c Release -r win-x64 --self-contained true -o "build" -p:WarningLevel=0 -
Use EBA.
- Linux
- macOS
- Windows
cd build/ && ./eba --helpcd build/ && ./eba --helpcd .\build\ ; .\eba.exe --help