From af1ddd2e90803f16a6cec670f36d4126f8c4cde5 Mon Sep 17 00:00:00 2001 From: Kyle Zeng Date: Tue, 30 Jan 2024 18:09:30 -0700 Subject: [PATCH] make pylint able to resolve the imports in editable installation --- extremely-simple-setup.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/extremely-simple-setup.sh b/extremely-simple-setup.sh index a16ac2b8d..91f4318fe 100755 --- a/extremely-simple-setup.sh +++ b/extremely-simple-setup.sh @@ -11,11 +11,11 @@ git clone https://github.com/angr/binaries.git python -m pip install -U pip wheel setuptools cffi "unicorn==2.0.1.post1" -pip install -e ./archinfo -pip install -e ./pyvex -pip install -e ./cle -pip install -e ./claripy -pip install -e ./ailment -pip install --no-build-isolation -e ./angr -pip install -e ./angr-management +pip install -e ./archinfo --config-settings editable_mode=strict +pip install -e ./pyvex --config-settings editable_mode=strict +pip install -e ./cle --config-settings editable_mode=strict +pip install -e ./claripy --config-settings editable_mode=strict +pip install -e ./ailment --config-settings editable_mode=strict +pip install --no-build-isolation -e ./angr --config-settings editable_mode=strict +pip install -e ./angr-management --config-settings editable_mode=strict