- No longer sourcing deps for flatpak's sake. - Switching from svglib to cairosvg since svglib not in ubuntu.
10 lines
180 B
Python
Executable file
10 lines
180 B
Python
Executable file
#!/usr/bin/env python3.9
|
|
|
|
|
|
import subprocess
|
|
|
|
import eris.tools
|
|
|
|
|
|
subprocess.run(["sudo", "apt-get", "-y", "install"] +
|
|
list(eris.tools.dependencies()), check=True)
|