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
If you want to build GraalPython from source, checkout this repository and the
24
-
[mx](https://github.com/graalvm/mx) build tool, and run `mx --dy /compiler
25
-
python-gvm` in the `graalpython` repository root. If the build is fine, it will
26
-
print the full path to the `graalpython` executable as the last line of output.
27
-
28
-
For more information and some examples of what you can do with GraalPython,
29
-
check out the [reference](https://www.graalvm.org/reference-manual/python/).
30
-
31
-
### Create a virtual environment
32
-
#### Requirements:
33
-
---
34
-
*[mx](https://github.com/graalvm/mx) - a separate Python tool co-developed for GraalVM development. This tool must be downloaded and put onto your PATH:
23
+
### Building from source
24
+
#### Requirements
35
25
26
+
*[mx](https://github.com/graalvm/mx) - a separate Python tool co-developed for GraalVM development. This tool must be
27
+
downloaded and put onto your PATH:
36
28
```
37
29
git clone https://github.com/graalvm/mx.git
38
30
export PATH=$PWD/mx:$PATH
39
31
```
40
-
---
32
+
33
+
#### Building
34
+
35
+
Run `mx --dy /compiler python-gvm` in the `graalpython` repository root. If the build is fine, it will print the full
36
+
path to the `graalpython` executable as the last line of output.
37
+
38
+
For more information and some examples of what you can do with GraalPython,
39
+
check out the [reference](https://www.graalvm.org/reference-manual/python/).
40
+
41
+
### Create a virtual environment
41
42
The best way of using the GraalVM implementation of Python is out of a virtual environment. To do so
42
43
execute the following command in the project directory:
0 commit comments