diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-07-07 14:39:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 14:39:57 -0400 |
commit | cd3fab183fd06b21cdfdef25f834c764289d8a83 (patch) | |
tree | 0652b8471533715fa9b32c13699970123c4ca7d4 /docs/contributing/building_from_source.md | |
parent | f48a3fd194855cbd1ffb4447086bf252b822802d (diff) |
fix(docs): update contributing instructions to mention installing python 3 instead of 2. (#11319)
Diffstat (limited to 'docs/contributing/building_from_source.md')
-rw-r--r-- | docs/contributing/building_from_source.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/contributing/building_from_source.md b/docs/contributing/building_from_source.md index 01456c6a7..b02a650fc 100644 --- a/docs/contributing/building_from_source.md +++ b/docs/contributing/building_from_source.md @@ -52,9 +52,9 @@ V8_FROM_SOURCE=1 cargo build -vv When building V8 from source, there are more dependencies: -[Python 2](https://www.python.org/downloads). Ensure that a suffix-less -`python`/`python.exe` exists in your `PATH` and it refers to Python 2, -[not 3](https://github.com/denoland/deno/issues/464#issuecomment-411795578). +[Python 3](https://www.python.org/downloads) for running WPT tests. Ensure that +a suffix-less `python`/`python.exe` exists in your `PATH` and it refers to +Python 3. For Linux users glib-2.0 development files must also be installed. (On Ubuntu, run `apt install libglib2.0-dev`.) |