openscad-testrun command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
openscad-testrun: command not found
or when using sudo you get the following error message
sudo: openscad-testrun: command not found
Solutions to openscad-testrun: command not found
How To Fix openscad-testrun: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu openscad-testrun is provided by openscad-testing package.
openscad-testing is:
OpenSCAD is a software for creating solid 3D CAD objects. It focuses on CAD aspects rather than artistic ones.
This package contains all programs required to run the test suites.
To fix this problem, we can install more using the command below.
sudo apt-get -y install openscad-testing
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install openscad-testing.
sudo apt -y install openscad-testing
Or if you have aptitude installed you can use the following command.
sudo aptitude install openscad-testing
Summary
In this tutorial we learn how to fix openscad-testrun command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.