Skip to content

Commit

Permalink
depend on python version 3 specifically
Browse files Browse the repository at this point in the history
`python` usually refers to python version 2, which is EOL.
  • Loading branch information
thomastrapp committed Apr 21, 2023
1 parent 01b0b48 commit 02fed88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Hext.js also works in Node ([example](./htmlext.wasm.js)). If performance is imp
[Hext](https://github.com/html-extract/hext) is written in C++. This repo contains a full build process for compiling Hext and all its dependencies to JavaScript/WebAssembly.

In order to build this, you need [Emscripten](https://emscripten.org/docs/getting_started/downloads.html) and the following packages:
`wget git python build-essential libxml2 libtool autoconf rapidjson-dev cmake`.
`wget git python3 build-essential libxml2 libtool autoconf rapidjson-dev cmake`.

Then compilation is done with a single command:

Expand Down
2 changes: 1 addition & 1 deletion scripts/github-actions/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

sudo apt-get update -yy
sudo apt-get install -yy \
wget python build-essential libxml2 \
wget python3 build-essential libxml2 \
libtool autoconf rapidjson-dev cmake

# setup emsdk
Expand Down

0 comments on commit 02fed88

Please sign in to comment.