From 0a2b09730d975a0c87bfdb819b97a32042853e02 Mon Sep 17 00:00:00 2001 From: gl Date: Sat, 23 Aug 2025 13:24:08 +0200 Subject: [PATCH 1/2] Triton can be installed using pip Added the right command in the README.md file to install Triton using pip, since `pip install triton` installs an entirely different package. --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2bea500d..719df6f04 100644 --- a/README.md +++ b/README.md @@ -91,8 +91,15 @@ from triton import * '0xdead' ``` +## Install using pip -## Install +Triton can be installed using `pip`: + +```console +pip install triton-library +``` + +## Install from source Triton relies on the following dependencies: @@ -105,7 +112,6 @@ Triton relies on the following dependencies: * llvm (optional) >= 12 ``` - ### Linux and MacOS ```console From 5d21582e711e7ed34596b1da3ac487c8c8144603 Mon Sep 17 00:00:00 2001 From: Elias Bachaalany Date: Sun, 28 Sep 2025 09:45:13 -0700 Subject: [PATCH 2/2] Minor mods and typos --- .gitignore | 1 + src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1b8ec2d34..5b937d29c 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ private/* dist/ *.egg-info/ wheelhouse/ +.z3-trace \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f95f5c604..9efd7cf5a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,7 +2,7 @@ add_subdirectory(libtriton) if(BUILD_EXAMPLES) if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Windows") - # Disable exemples for windows as linkage doesn't work. Exported function should + # Disable examples for windows as linkage doesn't work. Exported function should # be marked as exported on windows. add_subdirectory(examples) else()