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
Copy file name to clipboardExpand all lines: docs/user/README.md
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,8 @@ A JVM standalone that comes with a JVM has the `-jvm` suffix in the name: `graal
47
47
48
48
## Installing GraalPy
49
49
50
-
You can install GraalPy by downloading a compressed GraalPy tarball appropriate for your platform. For GraalPy Community, you can also use `pyenv` or `conda`.
50
+
You can install GraalPy by downloading a compressed GraalPy tarball appropriate for your platform.
51
+
Linux and macOS users can also use [Pyenv](https://github.com/pyenv/pyenv) or [Conda-Forge](https://conda-forge.org/) (Conda-Forge provides GraalPy Community only).
51
52
52
53
### Downloading
53
54
@@ -69,25 +70,25 @@ You can install GraalPy by downloading a compressed GraalPy tarball appropriate
69
70
./path/to/bin/graalpy --version
70
71
```
71
72
72
-
### Using `pyenv` (GraalPy Community only)
73
-
#### Linux and macOS
73
+
### Using `pyenv`
74
74
75
-
The other way to install GraalPy Community on Linux and macOS platforms is to use [pyenv](https://github.com/pyenv/pyenv/), the Python version manager.
76
-
For example, to install version 23.1.0, run the following command:
75
+
Linux and macOS users can install GraalPy using [Pyenv](https://github.com/pyenv/pyenv).
76
+
To install version 23.1.0, run the following command:
77
77
78
78
```bash
79
-
pyenv install graalpy-community-23.1.0
79
+
pyenv install graalpy-23.1.0
80
80
```
81
81
82
82
### Using Conda Forge (GraalPy Community only)
83
-
Another option is to use [Conda-Forge](https://conda-forge.org/).
84
-
To get an environment with the latest version of GraalPy, use the following command:
83
+
84
+
Another option is to use [Conda-Forge](https://conda-forge.org/) to install GraalPy on Linux and macOS (GraalPy Community only).
85
+
To get an environment with the latest version, use the following command:
85
86
86
87
```bash
87
88
conda create -c conda-forge -n graalpy graalpy
88
89
```
89
90
90
-
#### Windows
91
+
## GraalPy for Windows
91
92
92
93
There is a GraalPy preview build for Windows that you can [download](https://github.com/oracle/graalpython/releases/).
93
94
It supports installation of pure Python packages via `pip`. Native extensions are a work in progress.
0 commit comments