txt2bxl command not found
In this troubleshooting guide we learn how to fix txt2bxl command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
txt2bxl: command not found
or when using sudo you get the following error message
sudo: txt2bxl: command not found
Solutions to txt2bxl: command not found
How To Fix txt2bxl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu txt2bxl is provided by pcb-rnd-io-alien package.
pcb-rnd-io-alien is:
Load and/or save boards in file formats supported by other EDA tools, such as KiCAD, Eagle, protel/autotrax, etc.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pcb-rnd-io-alien
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pcb-rnd-io-alien.
sudo apt -y install pcb-rnd-io-alien
Or if you have aptitude installed you can use the following command.
sudo aptitude install pcb-rnd-io-alien
Summary
In this tutorial we learn how to fix txt2bxl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.