We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b71b95e commit 3d4baf2Copy full SHA for 3d4baf2
jingle_python/gh_actions_setup.py
@@ -33,7 +33,7 @@ def install_with_apt():
33
print("Detected apt. Installing llvm-dev, libclang-dev, and clang...", file=sys.stderr)
34
try:
35
subprocess.run(['apt', 'update'], check=True)
36
- subprocess.run(['apt', 'install', '-y', 'build-essential', 'libc6-dev', 'gcc-multilib', "libz3-dev"], check=True)
+ subprocess.run(['apt', 'install', '-y', 'build-essential', 'libc6-dev', 'gcc-multilib', "libz3-dev", "z3"], check=True)
37
print("Packages installed successfully via apt.", file=sys.stderr)
38
except subprocess.CalledProcessError:
39
print("Failed to install packages using apt.", file=sys.stderr)
0 commit comments