Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install Stetl via python pip




Stetl - Transformation and conversion framework (ETL) mainly for geospatial data, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: 2
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: GIS

When you know about this project and you want to new install Stetl to support your project or you get trouble as ModuleNotFoundError: No module named "Stetl" or ImportError: cannot import name "Stetl" in your project, let follow this tutorial to install Stetl



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_Stetl_env

- Active the virtual environment

test_Stetl_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_Stetl_env

- Active the virtual environment

source test_Stetl_env/bin/active


Step 2: OK, now, let flow below content to start the installation Stetl

To install Stetl on Windows(CMD):

py -m pip install Stetl

To install Stetl on Unix/macOs:

pip install Stetl


Step 3: If you want to install a specific Stetl version, add ==<Stetl version> to the end command line

Example:

pip install Stetl==1.0.2


Please see the version list below table:

VersionReleased dateCommand
Stetl 2.02019-04-11T14:51:49Windows:

py -m pip install Stetl==2.0

Unix/macOs:

pip install Stetl==2.0

Stetl 1.32019-03-20T12:00:36Windows:

py -m pip install Stetl==1.3

Unix/macOs:

pip install Stetl==1.3

Stetl 1.22018-07-07T12:37:46Windows:

py -m pip install Stetl==1.2

Unix/macOs:

pip install Stetl==1.2

Stetl 1.12017-11-07T15:19:24Windows:

py -m pip install Stetl==1.1

Unix/macOs:

pip install Stetl==1.1

Stetl 1.0.92016-06-17T16:21:21Windows:

py -m pip install Stetl==1.0.9

Unix/macOs:

pip install Stetl==1.0.9

Stetl 1.0.82015-07-03T15:00:24Windows:

py -m pip install Stetl==1.0.8

Unix/macOs:

pip install Stetl==1.0.8

Stetl 1.0.72014-11-24T10:31:43Windows:

py -m pip install Stetl==1.0.7

Unix/macOs:

pip install Stetl==1.0.7

Stetl 1.0.62014-09-05T12:15:20Windows:

py -m pip install Stetl==1.0.6

Unix/macOs:

pip install Stetl==1.0.6

Stetl 1.0.52014-02-19T14:58:38Windows:

py -m pip install Stetl==1.0.5

Unix/macOs:

pip install Stetl==1.0.5

Stetl 1.0.42013-09-23T12:01:27Windows:

py -m pip install Stetl==1.0.4

Unix/macOs:

pip install Stetl==1.0.4

Stetl 1.0.32013-09-16T16:06:38Windows:

py -m pip install Stetl==1.0.3

Unix/macOs:

pip install Stetl==1.0.3

Stetl 1.0.22013-06-26T16:13:04Windows:

py -m pip install Stetl==1.0.2

Unix/macOs:

pip install Stetl==1.0.2


Step 4: Otherwise, you can install Stetl from local archives:

Download the distribution file from Stetl-2.0.tar.gz or the specific Stetl version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Stetl_downloaded_file>

On Unix/macOs:

pip install <path_to_Stetl_downloaded_file>


List distribution:


Project link:

- Homepage