Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 915 Bytes

build.md

File metadata and controls

33 lines (17 loc) · 915 Bytes

Building Bisq

You will need OpenJDK 10 installed and configured as the default system JDK to complete the following instructions. See the scripts directory for scripts that can be used to install and configure the JDK automatically.

TIP: If you are on MacOS, run the script with this command . scripts/install_java.sh.

Clone

git clone https://github.com/bisq-network/bisq
cd bisq

Build

You do not need to install Gradle to complete the following command. The gradlew shell script will install it for you if necessary.

./gradlew build

If on Windows run gradlew.bat build instead.

Run

Bisq executables are now available in the root project directory. Run Bisq Desktop as follows:

./bisq-desktop

If on Windows use the bisq-desktop.bat script instead.

See also