Please can anybody give me an answer for this? I have already tried:
sudo apt-get install makeinfo textinfo texi2htmlBut, I still get the error:
Unable to find the pacakge. 2 4 Answers
If you would have executed makeinfo directly, it would have suggested you the right package name:
$ makeinfo
The program 'makeinfo' is currently not installed. You can install it by typing:
sudo apt-get install texinfoAfter installing the apt-file package, you could also locate it with apt-file:
$ apt-file search makeinfo
...
texinfo: /usr/bin/makeinfo
...Searching for "makeinfo" on packages.ubuntu.com would give the same information as apt-file.
You need to type "texinfo" not "textinfo".
There is two way to install texinfo, Download () and build using configure option, but you might get Exception like, Makefile:18283: *** missing separator stop
and the easiest way is by running the below command in your terminal
sudo apt-get install texinfo Open a terminal and enter
sudo apt-get install makeinfo texinfo texi2htmlNote that makeinfo has been removed.