@@ -19,17 +19,33 @@ Select the installation option that you prefer.
1919## SDKMAN!
2020
2121Install Oracle GraalVM with [ SDKMAN!] ( https://sdkman.io/ ) {: target ="_ blank"}:
22+
2223``` bash
2324sdk install java < version> -graal
2425```
26+
2527To install GraalVM Community Edition, change the distribution from ` graal ` to ` graalce ` in the command.
2628
2729SDKMAN! helps you install and easily switch between JDKs.
28- Check which GraalVM releases are available for installation by running:
30+
31+ To check which GraalVM releases are available for installation, run:
32+
2933``` bash
3034sdk list java
3135```
3236
37+ To switch to the specified GraalVM version for your current terminal session, run:
38+
39+ ``` bash
40+ sdk use java < version> -graal
41+ ```
42+
43+ To set a version as the default for all new terminal sessions, run:
44+
45+ ``` bash
46+ sdk default java < version> -graal
47+ ```
48+
3349## From an Archive
3450
3551Install GraalVM from an archive (_ .tar.gz_ ) for the current user into any location, without affecting other JDK installations.
@@ -75,7 +91,8 @@ For other installation options, visit the [GraalVM Downloads page](https://www.g
7591
7692# # Prerequisites for Native Image on Linux
7793
78- Native Image depends on the local toolchain (header files for the C library, ` glibc-devel` , ` zlib` , ` gcc` , and/or ` libstdc++-static` ).
94+ Native Image depends on the local toolchain, including header files for the C library, ` glibc-devel` , ` zlib` , ` gcc` , and/or ` libstdc++-static` .
95+
7996These dependencies can be installed (if not yet installed) using a package manager on your Linux machine.
8097
8198On ** Oracle Linux** use the ` yum` package manager:
0 commit comments