occt-draw command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
occt-draw: command not found
or when using sudo you get the following error message
sudo: occt-draw: command not found
Solutions to occt-draw: command not found
How To Fix occt-draw: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu occt-draw is provided by occt-draw package.
occt-draw is:
Open CASCADE Technology is a suite for 3D surface and solid modeling, visualization, data exchange and rapid application development. It is an excellent platform for development of numerical simulation software including CAD/CAM/CAE, AEC and GIS, as well as PDM applications.
Draw is a command interpreter based on Tcl and a graphical system used to test and demonstrate Open CASCADE Technology modeling libraries.
To fix this problem, we can install more using the command below.
sudo apt-get -y install occt-draw
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install occt-draw.
sudo apt -y install occt-draw
Or if you have aptitude installed you can use the following command.
sudo aptitude install occt-draw
Summary
In this tutorial we learn how to fix occt-draw command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.