10 lines
182 B
Python
Executable file
10 lines
182 B
Python
Executable file
#!/usr/bin/env python3.9
|
|
|
|
|
|
import subprocess
|
|
|
|
import eris.tools
|
|
|
|
|
|
subprocess.run(["sudo", "apt-get", "-y", "install"] +
|
|
sorted(eris.tools.dependencies()), check=True)
|