stetl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
stetl: command not found
or when using sudo you get the following error message
sudo: stetl: command not found
Solutions to stetl: command not found
How To Fix stetl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu stetl is provided by stetl package.
stetl is:
Stetl, streaming ETL, pronounced “staedl”, is a lightweight ETL-framework for the conversion of rich (as GML) geospatial data conversion.
It basically glues together existing parsing and transformation tools like GDAL/OGR (ogr2ogr) and XSLT. By using native tools like libxml and libxslt (via Python lxml) Stetl is speed-optimized.
Stetl has a similar design as Spring (Java) and other modern frameworks based on IoC (Inversion of Control). A configuration file (in Python config format) specifies your chain of ETL steps. This chain is formed by a series of Python modules/objects and their parameters. These are symbolically specified in the config file. You just invoke etl.py the main program with a config file. The config file specifies the input modules (e.g. PostGIS), transformers (e.g. XSLT) and outputs (e.g. a GML file or even WFS-T a geospatial protocol to publish GML to a server).
This package contains the stetl utility.
To fix this problem, we can install more using the command below.
sudo apt-get -y install stetl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install stetl.
sudo apt -y install stetl
Or if you have aptitude installed you can use the following command.
sudo aptitude install stetl
Summary
In this tutorial we learn how to fix stetl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.