Skip to content

Instantly share code, notes, and snippets.

@viztastic
Last active October 1, 2016 10:10
Show Gist options
  • Save viztastic/76425ad9107027cd5528 to your computer and use it in GitHub Desktop.
Save viztastic/76425ad9107027cd5528 to your computer and use it in GitHub Desktop.
Ran into a few difficulties whilst installing Vim on my AWS Linux AMI (E.g. an error saying "checking for tgetent() vim aws linux" and another carrying on about missing ncurses-devel. Documenting the process here for reference.

Vim

(Use Git to compile VIM, not that hard once you have these two in place:)

$ sudo yum update -y
$ sudo yum group install "Development Tools"
$ sudo yum install ncurses-devel

$ git clone https://github.com/vim/vim.git
$ cd vim/src
$ sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment