You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/installing.md
+15-13Lines changed: 15 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,15 @@
1
1
# Set up environment
2
2
3
-
These are the steps needed to build Haveno and test it on our test network or locally.
3
+
These are the steps needed to build Haveno. You can test it on our test network or locally.
4
4
5
-
## Install dependencies
6
-
7
-
On Linux and macOS, install Java JDK 21:
8
-
9
-
```
10
-
curl -s "https://get.sdkman.io" | bash
11
-
sdk install java 21.0.2.fx-librca
12
-
```
5
+
> [!note]
6
+
> Trying to install Haveno for mainnet?
7
+
>
8
+
> Find a third party network and use their installer or build their repository. We do not operate or endorse any mainnet network.
13
9
14
-
On Windows, install MSYS2 and Java JDK 21:
10
+
## Install dependencies
15
11
12
+
On Windows, first install MSYS2:
16
13
1. Install [MSYS2](https://www.msys2.org/).
17
14
2. Start MSYS2 MINGW64 or MSYS MINGW32 depending on your system. Use MSYS2 for all commands throughout this document.
18
15
4. Update pacman: `pacman -Syy`
@@ -21,12 +18,17 @@ On Windows, install MSYS2 and Java JDK 21:
21
18
64-bit: `pacman -S mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake git`
22
19
23
20
32-bit: `pacman -S mingw-w64-i686-toolchain make mingw-w64-i686-cmake git`
24
-
6.`curl -s "https://get.sdkman.io" | bash`
25
-
7.`sdk install java 21.0.2.fx-librca`
21
+
22
+
Install Java JDK 21:
23
+
24
+
```
25
+
curl -s "https://get.sdkman.io" | bash
26
+
sdk install java 21.0.2.fx-librca
27
+
```
26
28
27
29
## Build Haveno
28
30
29
-
If it's the first time you are building Haveno, run the following commands to download the repository, the needed dependencies, and build the latest release:
31
+
If it's the first time you are building Haveno, run the following commands to download the repository, the needed dependencies, and build the latest release. If using a third party network, replace the repository URL with theirs:
0 commit comments