From c347951fc4e36f954c1ef61ede51f82ea2d082e6 Mon Sep 17 00:00:00 2001 From: "Xu, Zefan" Date: Tue, 18 Nov 2025 10:26:43 +0800 Subject: [PATCH] feat(apt): update apt list to adapt NEMU The following packages are added: * python-is-python3 (Align with Github Action Runner) * python3-protobuf (Needed by NEMU/LibCheckPoint/nanopb) * python3-grpc-tools (Needed by NEMU/LibCheckPoint/nanopb) The following packages are removed: * shadowsocks-libev (make no sense) --- setup-tools.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup-tools.sh b/setup-tools.sh index 364b2c80e..87d35bac7 100755 --- a/setup-tools.sh +++ b/setup-tools.sh @@ -7,7 +7,6 @@ export DEBIAN_FRONTEND=noninteractive apt update apt install -y \ proxychains4 \ - shadowsocks-libev \ vim \ wget \ git \ @@ -30,7 +29,11 @@ apt install -y \ sqlite3 \ libsqlite3-dev \ zstd \ - libzstd-dev + libzstd-dev \ + python-is-python3 \ + python3-protobuf \ + python3-grpc-tools + sh -c "curl -L https://repo1.maven.org/maven2/com/lihaoyi/mill-dist/1.0.4/mill-dist-1.0.4-mill.sh > /usr/local/bin/mill && chmod +x /usr/local/bin/mill"