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

How to install teradataml via python pip




teradataml - Teradata Vantage Python package for Advanced Analytics, it belongs to Classifiers:

- License :: Other/Proprietary License
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.5
- Topic :: Database
- Topic :: Database :: Front-Ends

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



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_teradataml_env

- Active the virtual environment

test_teradataml_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_teradataml_env

- Active the virtual environment

source test_teradataml_env/bin/active


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

To install teradataml on Windows(CMD):

py -m pip install teradataml

To install teradataml on Unix/macOs:

pip install teradataml


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

Example:

pip install teradataml==16.20.0.0


Please see the version list below table:

VersionReleased dateCommand
teradataml 17.10.0.12022-05-10T12:30:14Windows:

py -m pip install teradataml==17.10.0.1

Unix/macOs:

pip install teradataml==17.10.0.1

teradataml 17.10.0.02022-04-28T12:08:04Windows:

py -m pip install teradataml==17.10.0.0

Unix/macOs:

pip install teradataml==17.10.0.0

teradataml 17.0.0.42021-11-16T08:10:20Windows:

py -m pip install teradataml==17.0.0.4

Unix/macOs:

pip install teradataml==17.0.0.4

teradataml 17.0.0.32021-04-21T05:20:50Windows:

py -m pip install teradataml==17.0.0.3

Unix/macOs:

pip install teradataml==17.0.0.3

teradataml 17.0.0.22021-03-05T12:54:08Windows:

py -m pip install teradataml==17.0.0.2

Unix/macOs:

pip install teradataml==17.0.0.2

teradataml 17.0.0.12021-02-17T06:38:48Windows:

py -m pip install teradataml==17.0.0.1

Unix/macOs:

pip install teradataml==17.0.0.1

teradataml 17.0.0.02020-07-19T12:44:24Windows:

py -m pip install teradataml==17.0.0.0

Unix/macOs:

pip install teradataml==17.0.0.0

teradataml 16.20.0.62020-05-05T08:25:40Windows:

py -m pip install teradataml==16.20.0.6

Unix/macOs:

pip install teradataml==16.20.0.6

teradataml 16.20.0.52020-02-20T13:40:52Windows:

py -m pip install teradataml==16.20.0.5

Unix/macOs:

pip install teradataml==16.20.0.5

teradataml 16.20.0.42020-01-16T07:20:39Windows:

py -m pip install teradataml==16.20.0.4

Unix/macOs:

pip install teradataml==16.20.0.4

teradataml 16.20.0.32019-08-13T10:31:28Windows:

py -m pip install teradataml==16.20.0.3

Unix/macOs:

pip install teradataml==16.20.0.3

teradataml 16.20.0.22019-07-02T04:50:55Windows:

py -m pip install teradataml==16.20.0.2

Unix/macOs:

pip install teradataml==16.20.0.2

teradataml 16.20.0.1.post02019-01-17T01:08:54Windows:

py -m pip install teradataml==16.20.0.1.post0

Unix/macOs:

pip install teradataml==16.20.0.1.post0

teradataml 16.20.0.02018-10-10T21:32:56Windows:

py -m pip install teradataml==16.20.0.0

Unix/macOs:

pip install teradataml==16.20.0.0


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

Download the distribution file from teradataml-17.10.0.1-py3-none-any.whl or the specific teradataml version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_teradataml_downloaded_file>

On Unix/macOs:

pip install <path_to_teradataml_downloaded_file>


List distribution:


Project link:

- Homepage