Skip to content

Commit 8f64bc7

Browse files
committed
Use 23.1.0 version in installation guide, latest available with venv
1 parent d42bc35 commit 8f64bc7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/user/Python-Runtime.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ The four GraalPy runtimes are identified as follows, using the general pattern _
7575
### Linux
7676

7777
The easiest way to install GraalPy on Linux is to use [Pyenv](https://github.com/pyenv/pyenv) (the Python version manager).
78-
To install version 23.1.2 using Pyenv, run the following commands:
78+
To install version 23.1.0 using Pyenv, run the following commands:
7979
```bash
80-
pyenv install graalpy-23.1.2
80+
pyenv install graalpy-23.1.0
8181
```
8282
```bash
83-
pyenv shell graalpy-23.1.2
83+
pyenv shell graalpy-23.1.0
8484
```
8585

8686
Alternatively, you can download a compressed GraalPy installation file from [GitHub releases](https://github.com/oracle/graalpython/releases).
@@ -91,12 +91,12 @@ Alternatively, you can download a compressed GraalPy installation file from [Git
9191
### macOS
9292

9393
The easiest way to install GraalPy on macOS is to use [Pyenv](https://github.com/pyenv/pyenv) (the Python version manager).
94-
To install version 23.1.2 using Pyenv, run the following commands:
94+
To install version 23.1.0 using Pyenv, run the following commands:
9595
```bash
96-
pyenv install graalpy-23.1.2
96+
pyenv install graalpy-23.1.0
9797
```
9898
```bash
99-
pyenv shell graalpy-23.1.2
99+
pyenv shell graalpy-23.1.0
100100
```
101101
Alternatively, you can download a compressed GraalPy installation file from [GitHub releases](https://github.com/oracle/graalpython/releases).
102102

@@ -107,7 +107,7 @@ Alternatively, you can download a compressed GraalPy installation file from [Git
107107
```
108108
For example:
109109
```bash
110-
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-23.1.2
110+
sudo xattr -r -d com.apple.quarantine ~/.pyenv/versions/graalpy-23.1.0
111111
```
112112
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.
113113

@@ -142,7 +142,7 @@ This generates wrapper scripts and makes the implementation usable from a shell
142142
```
143143
For example:
144144
```bash
145-
graalpy -m venv ~/.virtualenvs/graalpy-23.1.2
145+
graalpy -m venv ~/.virtualenvs/graalpy-23.1.0
146146
```
147147
148148
2. Activate the environment in your shell session:
@@ -151,7 +151,7 @@ This generates wrapper scripts and makes the implementation usable from a shell
151151
```
152152
For example:
153153
```bash
154-
source ~/.virtualenvs/graalpy-23.1.2/bin/activate
154+
source ~/.virtualenvs/graalpy-23.1.0/bin/activate
155155
```
156156
157157
Multiple executables are available in the virtual environment, including: `python`, `python3`, and `graalpy`.

0 commit comments

Comments
 (0)