Last active
March 23, 2021 19:21
-
-
Save maorv/74866262b082e24668103da717de92b5 to your computer and use it in GitHub Desktop.
Install neovim-qt on ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Install neovim from ppa" | |
sudo add-apt-repository -y ppa:neovim-ppa/unstable | |
sudo apt-get update | |
sudo apt-get install -y neovim | |
sudo apt install qt5-default libqt5widgets5 | |
echo "Compile and install neovim-qt" | |
git clone https://github.com/maorv/neovim-qt.git | |
cd neovim-qt && mkdir build && cd build | |
cmake ../ | |
cpack -G DEB -D CPACK_DEBIAN_PACKAGE_NAME=neovim-qt -D CPACK_DEBIAN_PACKAGE_MAINTAINER=`whoami` ../ | |
sudo dpkg -i neovim-qt-*.deb |
VolailleInc
commented
Jan 30, 2021
via email
Thank you very much for your feedback. It was helpful! Have a great
weekend!
…On Thu, 28 Jan 2021, 11:28 Maxim Ivanov, ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
@VolailleInc <https://github.com/VolailleInc> did you check the
PreinstallOutput.log as the error message asks?.. It contains a compile
error during make preinstall; the bundled msgpack library fails to
compile.
... That is, if you follow *literally* the initial gist create_neovim_qt_deb.sh
. Which is almost 5 years old by now. Perhaps you can notice that it
instructs you to compile a *fork* <https://github.com/maorv/neovim-qt>
which's been devoid of activity for about the same 5 years. Compare that
with the original repo <https://github.com/equalsraf/neovim-qt> which is
obviously breathing and alive.
You should be fine if you just use the original git repo instead of the
stale fork.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<https://gist.github.com/74866262b082e24668103da717de92b5#gistcomment-3610892>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AITPWRJFROXGUAUIQAMXHRTS4FC5RANCNFSM4KQND6PA>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment