From 86952ce10dc14508c853891701d15a340a1b34e9 Mon Sep 17 00:00:00 2001 From: Wolkensteinchen Date: Sat, 13 Sep 2025 11:18:24 +0000 Subject: [PATCH 1/2] Install requirements When trying out exo I got errors that clang and llvmlite were not installed when querying through the Web-Interface. This adds the pip install command for those dependencies into the installation script. --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index a5fffec6b..fa01972c4 100755 --- a/install.sh +++ b/install.sh @@ -9,3 +9,4 @@ else fi source .venv/bin/activate pip install -e . +pip install clang llvmlite From 0211cc068415013b03beef4547632c693935f812 Mon Sep 17 00:00:00 2001 From: Wolkensteinchen Date: Sat, 13 Sep 2025 11:22:12 +0000 Subject: [PATCH 2/2] Update README.md When trying out exo I got errors that clang and llvmlite were not installed when querying through the Web-Interface. This adds the pip install command for those dependencies into the installation instructions for installation without a virtual environment. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 96e47e727..1d01e1aba 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ The current recommended way to install exo is from source. git clone https://github.com/exo-explore/exo.git cd exo pip install -e . +pip install clang llvmlite # alternatively, with venv source install.sh ```