Skip to content

Instantly share code, notes, and snippets.

@ankitsxchdeva
Created April 18, 2022 04:23
Show Gist options
  • Save ankitsxchdeva/1eb2afaad782a92b9a129a9452ae97bb to your computer and use it in GitHub Desktop.
Save ankitsxchdeva/1eb2afaad782a92b9a129a9452ae97bb to your computer and use it in GitHub Desktop.
LaTeX Installation
#!/bin/bash
# ONLY FOR USE ON MacOS. If you are using a different operating system please see www.latex-project.org/get
which -s brew
if [[ $? != 0 ]] ; then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
else
brew update
fi
brew install --cask mactex
brew install wget
wget "https://raw.githubusercontent.com/ankitsxchdeva/dots/main/makefiles/Makefile.tex" -P ~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment