@@ -77,7 +77,7 @@ interactive prompt into which you can enter expressions for
77
77
evaluation. You can read about [ getting
78
78
started] ( https://docs.julialang.org/en/v1/manual/getting-started/ ) in the manual.
79
79
80
- ** Note** : Although some system package managers provide Julia, such
80
+ ** Note** : Although some OS package managers provide Julia, such
81
81
installations are neither maintained nor endorsed by the Julia
82
82
project. They may be outdated, broken and/or unmaintained. We
83
83
recommend you use the official Julia binaries instead.
@@ -90,7 +90,7 @@ Then, acquire the source code by cloning the git repository:
90
90
91
91
git clone https://github.com/JuliaLang/julia.git
92
92
93
- and then use the command prompt to change into the resulting julia directory. By default you will be building the latest unstable version of
93
+ and then use the command prompt to change into the resulting julia directory. By default, you will be building the latest unstable version of
94
94
Julia. However, most users should use the [ most recent stable version] ( https://github.com/JuliaLang/julia/releases )
95
95
of Julia. You can get this version by running:
96
96
@@ -117,7 +117,7 @@ started](https://docs.julialang.org/en/v1/manual/getting-started/)
117
117
in the manual.
118
118
119
119
Detailed build instructions, should they be necessary,
120
- are included in the [ build documentation] ( https://github.com/JuliaLang/julia/blob/master/doc/src/devdocs/build/ ) .
120
+ are included in the [ build documentation] ( https://github.com/JuliaLang/julia/blob/master/doc/src/devdocs/build/build.md ) .
121
121
122
122
### Uninstalling Julia
123
123
@@ -132,22 +132,22 @@ The Julia source code is organized as follows:
132
132
| Directory | Contents |
133
133
| - | - |
134
134
| ` base/ ` | source code for the Base module (part of Julia's standard library) |
135
- | ` stdlib/ ` | source code for other standard library packages |
136
135
| ` cli/ ` | source for the command line interface/REPL |
137
136
| ` contrib/ ` | miscellaneous scripts |
138
137
| ` deps/ ` | external dependencies |
139
138
| ` doc/src/ ` | source for the user manual |
139
+ | ` etc/ ` | contains ` startup.jl ` |
140
140
| ` src/ ` | source for Julia language core |
141
+ | ` stdlib/ ` | source code for other standard library packages |
141
142
| ` test/ ` | test suites |
142
- | ` usr/ ` | binaries and shared libraries loaded by Julia's standard libraries |
143
143
144
144
## Terminal, Editors and IDEs
145
145
146
146
The Julia REPL is quite powerful. See the section in the manual on
147
147
[ the Julia REPL] ( https://docs.julialang.org/en/v1/stdlib/REPL/ )
148
148
for more details.
149
149
150
- On Windows we highly recommend running Julia in a modern terminal,
150
+ On Windows, we highly recommend running Julia in a modern terminal,
151
151
such as [ Windows Terminal from the Microsoft Store] ( https://aka.ms/terminal ) .
152
152
153
153
Support for editing Julia is available for many
@@ -158,7 +158,7 @@ Support for editing Julia is available for many
158
158
others.
159
159
160
160
For users who prefer IDEs, we recommend using VS Code with the
161
- [ julia-vscode] ( https://www.julia-vscode.org/ ) plugin.
161
+ [ julia-vscode] ( https://www.julia-vscode.org/ ) plugin.
162
162
For notebook users, [ Jupyter] ( https://jupyter.org/ ) notebook support is available through the
163
163
[ IJulia] ( https://github.com/JuliaLang/IJulia.jl ) package, and
164
164
the [ Pluto.jl] ( https://github.com/fonsp/Pluto.jl ) package provides Pluto notebooks.
0 commit comments