I want to install LyX 2.2.2 on Ubuntu 16.10
. I used the following commands:
sudo add-apt-repository ppa:lyx-devel/release
sudo apt-get update
sudo apt-get install lyx
However, the above commands install LyX 2.2.0
. Anyway to install LyX 2.2.2 on Ubuntu 16.10
. Any help will be highly appreciated. Thanks
At present,
sudo apt-get install lyx
actually installs the 2.2.2 version of lyx!You can either wait until they provide it through that repository (they still ship the old version), or compile it yourself.
In the second case, you can download it from their website and follow the instructions inside to compile it (from the file INSTALL inside the package)
The
ppa
that you referred doesn't currently host the latest version ofLyx
.You have currently two options:
Lyx
to the repository.If you choose the second option, then download the tar.gz. Extract it and follow the instructions given in the
INSTALL
file insidelyx-2.2.2
.Except for the last step. In the last step, it instructs you to do
make install
. Instead docheckinstall
. What this will do is create adeb
package for you which you can easily install usingsudo dpkg -i
and uninstall usingapt
. This way is recommended because then when you decide to uninstall this package and install the one from theppa
when it gets available, you can easily remove it alongwith all its configuration files without any hassle. To installcheckinstall
do: