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.
128
128
129
129
* Windows
130
130
131
131
The Windows support of GraalPy is still experimental, so not all features and packages may be available.
132
132
The easiest way to install GraalPy on Windows is to use [Pyenv-win](https://pyenv-win.github.io/pyenv-win/) (the Python version manager for Windows).
133
-
To install version 25.0.1 using Pyenv-win, run the following commands:
133
+
To install version 25.0.2 using Pyenv-win, run the following commands:
134
134
```cmd
135
-
pyenv install graalpy-25.0.1-windows-amd64
135
+
pyenv install graalpy-25.0.2-windows-amd64
136
136
```
137
137
```cmd
138
-
pyenv shell graalpy-25.0.1-windows-amd64
138
+
pyenv shell graalpy-25.0.2-windows-amd64
139
139
```
140
140
> NOTE: There will be a delay between GraalPy release and its availability on Pyenv. Make sure to update Pyenv.
141
141
@@ -181,7 +181,7 @@ To run Jython scripts, you need to use a GraalPy distribution running on the JVM
3. Uncompress the file and update your `PATH` environment variable to include to the _graalpy-jvm-XX.Y.Z-macos-amd64/bin_ (or _graalpy-jvm-XX.Y.Z-macos-aarch64/bin_) directory.
187
187
4. Run your scripts with `graalpy --python.EmulateJython`.
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-25.0.1
142
+
graalpy -m venv ~/.virtualenvs/graalpy-25.0.2
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-25.0.1/bin/activate
151
+
source ~/.virtualenvs/graalpy-25.0.2/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:
@@ -86,8 +86,8 @@ In order to distribute the resulting application for other systems, follow these
86
86
2. Open your project configuration file, _app/build.gradle_, and modify it as follows.
87
87
- 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