eris/install-tools

10 lines
170 B
Text
Raw Normal View History

2017-02-08 13:56:56 +01:00
#!/usr/bin/env python3.5
2015-12-26 20:52:39 +00:00
import subprocess
import tools
command = ["sudo", "apt-get", "--yes", "install"] + list(tools.dependencies())
subprocess.check_call(command)