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
3. Uncompress the file and update your `PATH` environment variable to include to the _graalpy-XX.Y.Z-macos-amd64/bin_ (or _graalpy-XX.Y.Z-macos-aarch64/bin_) directory.
110
110
@@ -139,7 +139,7 @@ This generates wrapper scripts and makes the implementation usable from a shell
139
139
```
140
140
For example:
141
141
```bash
142
-
graalpy -m venv ~/.virtualenvs/graalpy-24.1.0
142
+
graalpy -m venv ~/.virtualenvs/graalpy-24.2.0
143
143
```
144
144
145
145
2. Activate the environment in your shell session:
@@ -148,7 +148,7 @@ This generates wrapper scripts and makes the implementation usable from a shell
148
148
```
149
149
For example:
150
150
```bash
151
-
source ~/.virtualenvs/graalpy-24.1.0/bin/activate
151
+
source ~/.virtualenvs/graalpy-24.2.0/bin/activate
152
152
```
153
153
154
154
Multiple executables are available in the virtual environment, including: `python`, `python3`, and `graalpy`.
2. Build a native executable using the [GraalVM Native Image "tool"](https://www.graalvm.org/latest/reference-manual/native-image/) plugin that was added for you automatically:
@@ -79,8 +79,8 @@ In order to distribute the resulting application for other systems, follow these
79
79
2. Open your project configuration file, _app/build.gradle_, and modify it as follows.
80
80
- Include the GraalPy support and the [GraalVM Polyglot API](https://www.graalvm.org/sdk/javadoc/org/graalvm/polyglot/package-summary.html) in the `dependencies` section:
0 commit comments