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
+7-9Lines changed: 7 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -87,11 +87,11 @@ Building Julia requires 1.5GiB of disk space and approximately 700MiB of virtual
87
87
88
88
For builds of julia starting with 0.5.0-dev, you can create out-of-tree builds of Julia by specifying `make O=<build-directory> configure` on the command line. This will create a directory mirror, with all of the necessary Makefiles to build Julia, in the specified directory. These builds will share the source files in Julia and `deps/srccache`. Each out-of-tree build directory can have its own `Make.user` file to override the global `Make.user` file in the top-level folder.
89
89
90
-
If you need to build Julia in an environment that does not allow access to the outside world, use `make -C deps getall` to download all the necessary files. Then, copy the `julia` directory over to the target environment and build with `make`.
90
+
If you need to build Julia on a machine without internet access, use `make -C deps getall` to download all the necessary files. Then, copy the `julia` directory over to the target environment and build with `make`.
91
91
92
-
**Note:**the build process will fail badly if any of the build directory's parent directories have spaces or other shell meta-characters such as `$` or `:` in their names (this is due to a limitation in GNU make).
92
+
**Note:**The build process will fail badly if any of the build directory's parent directories have spaces or other shell meta-characters such as `$` or `:` in their names (this is due to a limitation in GNU make).
93
93
94
-
Once it is built, you can run the `julia` executable using its full path in the directory created above (the `julia` directory), or, to run it from anywhere, either
94
+
Once it is built, you can run the `julia` executable using its full path in the directory created above (the `julia` directory). To run julia from anywhere you can:
95
95
- add an alias (in `bash`: `echo "alias julia='/path/to/install/folder/bin/julia'" >> ~/.bashrc && source ~/.bashrc`), or
96
96
- add a soft link to the `julia` executable in the `julia` directory to `/usr/local/bin` (or any suitable directory already in your path), or
97
97
@@ -106,13 +106,11 @@ Now you should be able to run Julia like this:
106
106
107
107
julia
108
108
109
-
If everything works correctly, you will see a Julia banner and an interactive prompt into which you can enter expressions for evaluation. (Errors related to libraries might be caused by old, incompatible libraries sitting around in your PATH. In that case, try moving the `julia` directory earlier in the PATH).
109
+
If everything works correctly, you will see a Julia banner and an interactive prompt into which you can enter expressions for evaluation. (Errors related to libraries might be caused by old, incompatible libraries sitting around in your PATH. In this case, try moving the `julia` directory earlier in the PATH).
110
110
111
-
Your first test of Julia should be to determine whether your
112
-
build is working properly. From the UNIX/Windows command prompt inside
113
-
the `julia` source directory, type `make testall`. You should see output
114
-
that lists a series of tests being run; if they complete without
115
-
error, you should be in good shape to start using Julia.
111
+
Your first test of Julia determines whether your build is working properly. From the UNIX/Windows command prompt inside
112
+
the `julia` source directory, type `make testall`. You should see output that lists a series of running tests;
113
+
if they complete without error, you should be in good shape to start using Julia.
116
114
117
115
You can read about [getting started](https://docs.julialang.org/en/stable/manual/getting-started/) in the manual.
0 commit comments