html2pdbtxt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
html2pdbtxt: command not found
or when using sudo you get the following error message
sudo: html2pdbtxt: command not found
Solutions to html2pdbtxt: command not found
How To Fix html2pdbtxt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu html2pdbtxt is provided by txt2pdbdoc package.
txt2pdbdoc is:
This utility converts plain text files (or HTML files) to the de facto PalmOS standard DOC format for use in document readers (such as “C Spot Run”) and editors (such as “ZDOC”). DOC files are compressed by default, and txt2pdbdoc can also convert DOC files back to plain text.
To fix this problem, we can install more using the command below.
sudo apt-get -y install txt2pdbdoc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install txt2pdbdoc.
sudo apt -y install txt2pdbdoc
Or if you have aptitude installed you can use the following command.
sudo aptitude install txt2pdbdoc
Summary
In this tutorial we learn how to fix html2pdbtxt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.