Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajgappmark/13f269301a088a96f747b97142aaea2f to your computer and use it in GitHub Desktop.
Save ajgappmark/13f269301a088a96f747b97142aaea2f to your computer and use it in GitHub Desktop.
Instal a full latex texlive on Ubuntu Xenial without any of the docs
import subprocess
get_line_by_line_texlive_dependencies = subprocess.run(
[
"apt-cache",
"depends",
"texlive-full"
],
universal_newlines=True,
stdout=subprocess.PIPE
)
dependency_pattern = "Depends: "
def extract_dependency(dependency_text, pattern):
dependency = dependency_text.strip().replace(pattern, "")
return(dependency)
dependencies = [
extract_dependency(line, dependency_pattern)
for line in get_line_by_line_texlive_dependencies.stdout.splitlines()
if line.strip().startswith(dependency_pattern) and not line.strip().endswith("-doc")]
arguments = [
"apt-get",
"install",
"--assume-yes",
"--no-install-recommends"
]
arguments.extend(dependencies)
# execute apt-get install with all the package names
subprocess.run(arguments)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment