how.wtf

How to install Neovim on Ubuntu

· Thomas Taylor

Installing Neovim on Debian-based distributions: Ubuntu, Mint, etc. is easy!

Install Neovim on Ubuntu

Neovim is available through the Debian package manager. Simply execute the following command:

1sudo apt install neovim

Install Neovim using PPA

The default Neovim version bundled with apt is normally outdated. To install a newer version, a PPA (Personal Package Archive) must be used.

NOTE: The Neovim PPAs are not maintained by the Neovim team

Neovim stable PPA

To install the latest stable Neovim version using apt, add the following PPA:

1sudo add-apt-repository ppa:neovim-ppa/stable
2sudo apt-get update
3sudo apt-get install neovim

Neovim unstable PPA

To install the latest unstable Neovim verson using apt, add the following PPA:

1sudo add-apt-repository ppa:neovim-ppa/unstable
2sudo apt-get update
3sudo apt-get install neovim

#linux  

Reply to this post by email ↪