9 lines
168 B
Python
Executable file
9 lines
168 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
|
|
import subprocess
|
|
import tools
|
|
|
|
|
|
command = ["sudo", "apt-get", "--yes", "install"] + list(tools.dependencies())
|
|
subprocess.check_call(command)
|