Skip to content

Instantly share code, notes, and snippets.

@berarma
Last active March 6, 2019 14:26
Show Gist options
  • Save berarma/3f2decea7926e4ff50a3149c8d2e5b1b to your computer and use it in GitHub Desktop.
Save berarma/3f2decea7926e4ff50a3149c8d2e5b1b to your computer and use it in GitHub Desktop.
Neovim build instructions for Debian

This is what I had to do to build and install Neovim 0.3.4 with Python2 and Python3 support on Debian Stretch.

$ sudo apt install cmake libuv1-dev libmsgpack-dev libluajit-5.1-dev libunibilium-dev libtermkey-dev libvterm-dev libjemalloc-dev luajit lua-mpack gperf python3-pip

$ sudo pip2 install --upgrade pynvim

$ sudo pip3 install --upgrade pynvim

$ git clone neovim/neovim

$ cd neovim

$ mkdir build

$ cd build

$ cmake -DCMAKE_BUILD_TYPE=Release ..

$ make

$ make install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment