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.
126
126
127
127
* Windows
128
128
129
129
The Windows support of GraalPy is still experimental, so not all features and packages may be available.
130
130
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).
131
-
To install version 24.2.0 using Pyenv-win, run the following commands:
131
+
To install version 25.0.0 using Pyenv-win, run the following commands:
132
132
```cmd
133
-
pyenv install graalpy-24.2.0-windows-amd64
133
+
pyenv install graalpy-25.0.0-windows-amd64
134
134
```
135
135
```cmd
136
-
pyenv shell graalpy-24.2.0-windows-amd64
136
+
pyenv shell graalpy-25.0.0-windows-amd64
137
137
```
138
138
> NOTE: There will be a delay between GraalPy release and its availability on Pyenv. Make sure to update Pyenv.
139
139
@@ -179,7 +179,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.
185
185
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-24.2.0
142
+
graalpy -m venv ~/.virtualenvs/graalpy-25.0.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.2.0/bin/activate
151
+
source ~/.virtualenvs/graalpy-25.0.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