Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
42
rated 0 times [  42] [ 0]  / answers: 1 / hits: 75828  / 2 Years ago, thu, september 29, 2022, 7:13:24

How can I install Neovim on Ubuntu? Should I compile it from source?



The installation steps are a little bit blurry for me...


More From » 13.10

 Answers
7

From the universe repo


sudo apt install neovim

From source



  1. Download the master branch from Github



  2. Install the dependencies


    sudo apt-get install libtool autoconf automake cmake libncurses5-dev g++


  3. Go to the root of the project and build


    make cmake
    make test


  4. Run nvim in /neovim-master/build/bin




That works for me.


From the PPA repository



  1. Add the repository


     $ sudo add-apt-repository ppa:neovim-ppa/unstable


  2. Update and install


     $ sudo apt-get update
    $ sudo apt-get install neovim



[#26665] Saturday, October 1, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
uestred

Total Points: 464
Total Questions: 104
Total Answers: 112

Location: Israel
Member since Wed, Apr 14, 2021
3 Years ago
;