Install Open Source Python on CentOS/RHEL | Teradata Package for Python - Installing Open Source Python on CentOS/RHEL - Teradata Package for Python

Teradata® Package for Python User Guide

Product
Teradata Package for Python
Release Number
17.00
Published
November 2021
Language
English (United States)
Last Update
2022-01-14
dita:mapPath
bol1585763678431.ditamap
dita:ditavalPath
ayr1485454803741.ditaval
dita:id
B700-4006
lifecycle
previous
Product Category
Teradata Vantage
  1. Install Development Tools.
    sudo yum groupinstall 'Development Tools'
  2. Get Python 3.5.0 source code, and configure and install Python.
    1. Make $HOME/opt directory and change to this directory.
      mkdir -p $HOME/opt
      cd $HOME/opt
    2. Get the Python 3.5.0 source code.
      curl -O https://www.python.org/ftp/python/3.5.0/Python-3.5.0.tgz
    3. Unzip the downloaded Python package.
      tar xzvf Python-3.5.0.tgz
    4. Change to the directory where the package is unzipped.
      cd Python-3.5.0
    5. Configure the settings.
      ./configure --enable-shared --prefix=/usr/local --exec-prefix=/usr/local"
    6. Install the Python.
      sudo make altinstall