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: README.windows.md
+7-8
Original file line number
Diff line number
Diff line change
@@ -61,19 +61,18 @@ or edit `%USERPROFILE%\.gitconfig` and add/edit the lines:
61
61
62
62
3. Install and configure [MSYS2](https://msys2.github.io), a minimal POSIX-like environment for Windows.
63
63
64
-
1. Download the latest installer for the [32-bit](http://sourceforge.net/projects/msys2/files/Base/i686/) or [64-bit](http://sourceforge.net/projects/msys2/files/Base/x86_64/) distribution. The installer will have a name like `msys2-i686-yyyymmdd.exe` or `msys2-x86_64-yyyymmdd.exe`.
64
+
1. Download and run the latest installer for the [32-bit](http://sourceforge.net/projects/msys2/files/Base/i686/) or [64-bit](http://sourceforge.net/projects/msys2/files/Base/x86_64/) distribution. The installer will have a name like `msys2-i686-yyyymmdd.exe` or `msys2-x86_64-yyyymmdd.exe`.
65
65
66
-
2. Double-click `msys2_shell.bat` in the installed msys directory. This will initialize MSYS2. The shell will tell you to `exit` and restart the shell. For now, ignore it.
67
-
68
-
3. Update MSYS2 and install packages required to build julia, using the `pacman` package manager included in MSYS2:
66
+
2. Double-click `msys2_shell.bat` in the installed msys directory. Initialize the MSYS2 base system using the `pacman` package manager included in MSYS2:
69
67
70
68
```
71
-
pacman-key --init #Download keys
72
-
pacman -Syu #Update package database and full system upgrade
Now `exit` the MSYS2 shell and restart it, *even if you already restarted it above*. This is necessary in case the system upgrade updated the main MSYS2 libs. Reopen the MSYS2 shell and continue with:
71
+
72
+
3. Exit and restart MSYS2, then install packages required to build julia:
75
73
76
74
```
75
+
pacman -Syu #Update package database and full system upgrade
77
76
pacman -S diffutils git m4 make patch tar p7zip msys/openssh
78
77
```
79
78
@@ -91,7 +90,7 @@ or edit `%USERPROFILE%\.gitconfig` and add/edit the lines:
91
90
5. Configuration of MSYS2 is complete. Now `exit` the MSYS2 shell.
92
91
93
92
4. Build Julia and its dependencies from source.
94
-
1.Get the Julia sources
93
+
1.Open a new MSYS2 shell and get the Julia sources
0 commit comments