2021-04-11 21:53:19 +02:00
## Building Bisq
2018-11-11 12:42:45 +01:00
2022-09-15 09:21:37 +02:00
1. **Clone Bisq**
2018-11-11 12:42:45 +01:00
2021-04-11 21:53:19 +02:00
```sh
git clone https://github.com/bisq-network/bisq
2022-06-23 12:23:06 +02:00
# if you intend to do testing on the latest release, you can clone the respective branch selectively, without downloading the whole repository
# for the 1.9.3 release, you would do it like this:
2024-11-08 03:56:04 +01:00
git clone --recurse-submodules --branch release/v1.9.3 https://github.com/bisq-network/bisq
2021-04-11 21:53:19 +02:00
cd bisq
```
2018-11-11 12:42:45 +01:00
2022-09-15 09:21:37 +02:00
2. **Build Bisq**
2018-11-11 12:42:45 +01:00
2021-04-11 21:53:19 +02:00
On macOS and Linux, execute:
```sh
./gradlew build
```
2018-11-11 12:42:45 +01:00
2021-04-11 21:53:19 +02:00
On Windows:
```cmd
gradlew.bat build
```
2018-11-11 12:42:45 +01:00
2021-04-23 11:29:59 +02:00
If you prefer to skip tests to speed up the building process, just append _-x test_ to the previous commands.
2021-04-11 21:53:19 +02:00
### Important notes
2018-11-11 12:42:45 +01:00
2021-04-11 21:53:19 +02:00
1. You do _not_ need to install Gradle to build Bisq. The `gradlew` shell script will install it for you, if necessary.
2019-08-14 18:11:57 +02:00
2021-11-16 13:13:09 +01:00
2. Bisq currently works with JDK 11 and JDK 15. You can find out which
2021-04-11 21:53:19 +02:00
version you have with:
2018-11-11 12:42:45 +01:00
2021-04-11 21:53:19 +02:00
```sh
javac -version
```
2021-04-22 17:16:00 +02:00
If you do not have JDK 11 installed, check out scripts in the [scripts ](../scripts ) directory or download it manually from https://jdk.java.net/archive/.
2021-04-11 21:53:19 +02:00
## Running Bisq
Once Bisq is installed, its executables will be available in the root project directory. Run **Bisq Desktop** as follows:
On macOS and Linux:
```sh
./bisq-desktop
```
On Windows:
```cmd
bisq-desktop.bat
```
2018-11-11 12:42:45 +01:00
## See also
2021-04-11 21:53:19 +02:00
- [Importing Bisq into IntelliJ IDEA ](./idea-import.md )
- [Bisq development environment setup guide ](./dev-setup.md )