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