Skip to content

Commit 089379f

Browse files
committed
Merge readme sections about mx
1 parent c658c10 commit 089379f

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,25 @@ To try GraalPython with a full GraalVM, including the support for Java embedding
2020
and interop with other languages, you can use the bundled releases from
2121
[www.graalvm.org](https://www.graalvm.org/downloads/).
2222

23-
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
3525

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:
3628
```
3729
git clone https://github.com/graalvm/mx.git
3830
export PATH=$PWD/mx:$PATH
3931
```
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
4142
The best way of using the GraalVM implementation of Python is out of a virtual environment. To do so
4243
execute the following command in the project directory:
4344

0 commit comments

Comments
 (0)