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.md
+11
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ The main homepage for Julia can be found at [julialang.org](http://julialang.org
15
15
This is the GitHub repository of Julia source code, including instructions for compiling and installing Julia, below.
16
16
17
17
<aname="Resources"/>
18
+
## Resources
18
19
19
20
-**Homepage:**<http://julialang.org>
20
21
-**Binaries:**<http://julialang.org/downloads/>
@@ -30,6 +31,16 @@ The mailing list for developer discussion is
30
31
of messages is higher, and the discussions tend to be more esoteric. New
31
32
developers may find the notes in [CONTRIBUTING](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md) helpful to start contributing to the Julia codebase.
Copy file name to clipboardexpand all lines: README.windows.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ Julia runs on Windows XP SP2 or later (including Windows Vista, Windows 7, and W
63
63
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:
64
64
65
65
```
66
-
pacman -S diffutils git m4 make patch tar
66
+
pacman -S diffutils git m4 make patch tar msys/openssh
67
67
```
68
68
69
69
5. Configure your MSYS2 shell for convenience:
@@ -114,6 +114,8 @@ Julia runs on Windows XP SP2 or later (including Windows Vista, Windows 7, and W
114
114
touch deps/pcre-8.31/checked # This path will depend on the version of PCRE.
115
115
make -j 4 # Adjust the number of cores (4) to match your build environment.
116
116
```
117
+
6. Setup Package Development Environment
118
+
1. The `Pkg` module in Base provides many convenient tools for [developing and publishing packages](http://docs.julialang.org/en/latest/manual/packages/). One of the packages added through pacman above was `openssh`, which will allow secure access to GitHub APIs. Follow GitHub's [guide](https://help.github.com/articles/generating-ssh-keys) to setting up SSH keys to ensure your local machine can communicate with GitHub effectively.
0 commit comments