From 9984ee8c7a18dd6c2b73daf5a9afb03f445a576a Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Thu, 7 May 2020 10:48:41 -0400 Subject: [PATCH] [DOCS] Added pip command in README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9464324e4..d59482d7a 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,14 @@ The formal foundations of this project are described in the following MAPL2019 p Triton is a fairly self-contained package and uses its own parser (forked from [wgtcc](https://github.com/wgtdkp/wgtcc)) and LLVM-8.0+ for code generation. - +You can install the latest release with pip as follows: ``` sudo apt-get install llvm-8-dev +pip install triton +``` + +or the latest development version with: +``` pip install -e "git+https://github.com/ptillet/triton.git#egg=triton&subdirectory=python" ```