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

How to install db-extractor via python pip




db-extractor - Extract information from databases to files, multiple formats supported, from a various SQL based servers, it belongs to Classifiers:

- Intended Audience :: Information Technology
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
- Programming Language :: SQL
- Topic :: Database
- Topic :: Database :: Database Engines/Servers
- Topic :: Scientific/Engineering :: Information Analysis

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



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_db-extractor_env

- Active the virtual environment

test_db-extractor_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_db-extractor_env

- Active the virtual environment

source test_db-extractor_env/bin/active


Step 2: OK, now, let flow below content to start the installation db-extractor

To install db-extractor on Windows(CMD):

py -m pip install db-extractor

To install db-extractor on Unix/macOs:

pip install db-extractor


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

Example:

pip install db-extractor==1.0.7


Please see the version list below table:

VersionReleased dateCommand
db-extractor 1.2.42021-10-23T21:36:48Windows:

py -m pip install db-extractor==1.2.4

Unix/macOs:

pip install db-extractor==1.2.4

db-extractor 1.1.82020-06-15T16:09:10Windows:

py -m pip install db-extractor==1.1.8

Unix/macOs:

pip install db-extractor==1.1.8

db-extractor 1.1.72020-06-07T02:26:34Windows:

py -m pip install db-extractor==1.1.7

Unix/macOs:

pip install db-extractor==1.1.7

db-extractor 1.1.62020-05-29T00:19:18Windows:

py -m pip install db-extractor==1.1.6

Unix/macOs:

pip install db-extractor==1.1.6

db-extractor 1.1.52020-05-27T21:49:04Windows:

py -m pip install db-extractor==1.1.5

Unix/macOs:

pip install db-extractor==1.1.5

db-extractor 1.1.32020-05-12T16:04:12Windows:

py -m pip install db-extractor==1.1.3

Unix/macOs:

pip install db-extractor==1.1.3

db-extractor 1.1.22020-05-12T13:51:26Windows:

py -m pip install db-extractor==1.1.2

Unix/macOs:

pip install db-extractor==1.1.2

db-extractor 1.1.12020-05-12T12:24:13Windows:

py -m pip install db-extractor==1.1.1

Unix/macOs:

pip install db-extractor==1.1.1

db-extractor 1.0.112020-05-11T18:34:50Windows:

py -m pip install db-extractor==1.0.11

Unix/macOs:

pip install db-extractor==1.0.11

db-extractor 1.0.102020-05-11T11:16:17Windows:

py -m pip install db-extractor==1.0.10

Unix/macOs:

pip install db-extractor==1.0.10

db-extractor 1.0.92020-05-10T16:31:44Windows:

py -m pip install db-extractor==1.0.9

Unix/macOs:

pip install db-extractor==1.0.9

db-extractor 1.0.82020-05-09T21:36:16Windows:

py -m pip install db-extractor==1.0.8

Unix/macOs:

pip install db-extractor==1.0.8

db-extractor 1.0.72020-05-09T21:15:25Windows:

py -m pip install db-extractor==1.0.7

Unix/macOs:

pip install db-extractor==1.0.7


Step 4: Otherwise, you can install db-extractor from local archives:

Download the distribution file from db-extractor-1.2.4.tar.gz or the specific db-extractor version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_db-extractor_downloaded_file>

On Unix/macOs:

pip install <path_to_db-extractor_downloaded_file>


List distribution:

- db-extractor-1.0.7.tar.gz (python version >=3.6)
- db-extractor-1.0.8.tar.gz (python version >=3.6)
- db-extractor-1.0.9.tar.gz (python version >=3.6)
- db-extractor-1.0.10.tar.gz (python version >=3.6)
- db-extractor-1.0.11.tar.gz (python version >=3.6)
- db-extractor-1.1.1.tar.gz (python version >=3.6)
- db-extractor-1.1.2.tar.gz (python version >=3.6)
- db-extractor-1.1.3.tar.gz (python version >=3.6)
- db-extractor-1.1.5.tar.gz (python version >=3.6)
- db-extractor-1.1.6.tar.gz (python version >=3.6)
- db-extractor-1.1.7.tar.gz (python version >=3.6)
- db-extractor-1.1.8.tar.gz (python version >=3.6)
- db-extractor-1.2.4.tar.gz (python version >=3.6)
- db_extractor-1.2.4-py3-none-any.whl (python version >=3.6)


Project link:

- Homepage
- Documentation
- Issue Tracker
- Source Code