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

How to install retriever via python pip




retriever - Data Retriever, it belongs to Classifiers:

- Intended Audience :: Science/Research
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: Unix
- Programming Language :: Python
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Database
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: GIS
- Topic :: Scientific/Engineering :: Information Analysis
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

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



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_retriever_env

- Active the virtual environment

test_retriever_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_retriever_env

- Active the virtual environment

source test_retriever_env/bin/active


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

To install retriever on Windows(CMD):

py -m pip install retriever

To install retriever on Unix/macOs:

pip install retriever


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

Example:

pip install retriever==1.4


Please see the version list below table:

VersionReleased dateCommand
retriever 3.1.02022-04-27T00:02:20Windows:

py -m pip install retriever==3.1.0

Unix/macOs:

pip install retriever==3.1.0

retriever 3.0.02020-07-16T20:24:51Windows:

py -m pip install retriever==3.0.0

Unix/macOs:

pip install retriever==3.0.0

retriever 2.4.02019-06-11T05:52:05Windows:

py -m pip install retriever==2.4.0

Unix/macOs:

pip install retriever==2.4.0

retriever 2.3.12019-05-01T17:59:32Windows:

py -m pip install retriever==2.3.1

Unix/macOs:

pip install retriever==2.3.1

retriever 2.3.02019-05-01T17:14:05Windows:

py -m pip install retriever==2.3.0

Unix/macOs:

pip install retriever==2.3.0

retriever 2.2.02018-11-06T07:33:46Windows:

py -m pip install retriever==2.2.0

Unix/macOs:

pip install retriever==2.2.0

retriever 2.1.02017-10-27T21:10:15Windows:

py -m pip install retriever==2.1.0

Unix/macOs:

pip install retriever==2.1.0

retriever 2.0.02017-02-24T17:02:05Windows:

py -m pip install retriever==2.0.0

Unix/macOs:

pip install retriever==2.0.0

retriever 1.8.32016-02-12T16:33:47Windows:

py -m pip install retriever==1.8.3

Unix/macOs:

pip install retriever==1.8.3

retriever 1.7.02014-10-05T12:36:56Windows:

py -m pip install retriever==1.7.0

Unix/macOs:

pip install retriever==1.7.0

retriever 1.62014-03-23T17:53:26Windows:

py -m pip install retriever==1.6

Unix/macOs:

pip install retriever==1.6

retriever 1.42012-12-03T16:14:24Windows:

py -m pip install retriever==1.4

Unix/macOs:

pip install retriever==1.4


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_retriever_downloaded_file>

On Unix/macOs:

pip install <path_to_retriever_downloaded_file>


List distribution:


Project link:

- Homepage