fstl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fstl: command not found
or when using sudo you get the following error message
sudo: fstl: command not found
Solutions to fstl: command not found
How To Fix fstl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fstl is provided by fstl package.
fstl is:
fstl is a viewer for .stl files commonly used in stereolithography, rapid prototyping, 3D printing and CAM.
It is optimized to quickly load and render very high-polygon models.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fstl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fstl.
sudo apt -y install fstl
Or if you have aptitude installed you can use the following command.
sudo aptitude install fstl
Summary
In this tutorial we learn how to fix fstl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.