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

How to install aiotarantool via python pip




aiotarantool - Tarantool connection driver for work with asyncio, it belongs to Classifiers:

- License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
- Topic :: Database
- Topic :: Database :: Front-Ends

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



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_aiotarantool_env

- Active the virtual environment

test_aiotarantool_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_aiotarantool_env

- Active the virtual environment

source test_aiotarantool_env/bin/active


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

To install aiotarantool on Windows(CMD):

py -m pip install aiotarantool

To install aiotarantool on Unix/macOs:

pip install aiotarantool


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

Example:

pip install aiotarantool==1.0.0


Please see the version list below table:

VersionReleased dateCommand
aiotarantool 1.1.52017-06-17T18:36:29Windows:

py -m pip install aiotarantool==1.1.5

Unix/macOs:

pip install aiotarantool==1.1.5

aiotarantool 1.1.42017-06-08T08:18:21Windows:

py -m pip install aiotarantool==1.1.4

Unix/macOs:

pip install aiotarantool==1.1.4

aiotarantool 1.1.32017-04-10T07:55:34Windows:

py -m pip install aiotarantool==1.1.3

Unix/macOs:

pip install aiotarantool==1.1.3

aiotarantool 1.1.22017-04-09T10:35:11Windows:

py -m pip install aiotarantool==1.1.2

Unix/macOs:

pip install aiotarantool==1.1.2

aiotarantool 1.1.02017-04-05T16:16:59Windows:

py -m pip install aiotarantool==1.1.0

Unix/macOs:

pip install aiotarantool==1.1.0

aiotarantool 1.0.82016-12-20T21:44:58Windows:

py -m pip install aiotarantool==1.0.8

Unix/macOs:

pip install aiotarantool==1.0.8

aiotarantool 1.0.72016-12-19T08:57:00Windows:

py -m pip install aiotarantool==1.0.7

Unix/macOs:

pip install aiotarantool==1.0.7

aiotarantool 1.0.62015-12-11T20:59:50Windows:

py -m pip install aiotarantool==1.0.6

Unix/macOs:

pip install aiotarantool==1.0.6

aiotarantool 1.0.42015-07-29T07:46:16Windows:

py -m pip install aiotarantool==1.0.4

Unix/macOs:

pip install aiotarantool==1.0.4

aiotarantool 1.0.32015-04-01T21:43:12Windows:

py -m pip install aiotarantool==1.0.3

Unix/macOs:

pip install aiotarantool==1.0.3

aiotarantool 1.0.22015-03-30T22:32:35Windows:

py -m pip install aiotarantool==1.0.2

Unix/macOs:

pip install aiotarantool==1.0.2

aiotarantool 1.0.12015-03-30T21:43:44Windows:

py -m pip install aiotarantool==1.0.1

Unix/macOs:

pip install aiotarantool==1.0.1

aiotarantool 1.0.02015-03-28T13:22:30Windows:

py -m pip install aiotarantool==1.0.0

Unix/macOs:

pip install aiotarantool==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_aiotarantool_downloaded_file>

On Unix/macOs:

pip install <path_to_aiotarantool_downloaded_file>


List distribution:

- aiotarantool-1.0.0.tar.gz
- aiotarantool-1.0.1.tar.gz
- aiotarantool-1.0.2.tar.gz
- aiotarantool-1.0.3.tar.gz
- aiotarantool-1.0.4.tar.gz
- aiotarantool-1.0.6.tar.gz
- aiotarantool-1.0.7.tar.gz
- aiotarantool-1.0.8.tar.gz
- aiotarantool-1.1.0.tar.gz
- aiotarantool-1.1.2.tar.gz
- aiotarantool-1.1.3.tar.gz
- aiotarantool-1.1.4.tar.gz
- aiotarantool-1.1.5.tar.gz


Project link:

- Homepage