NZInstall
Install packages on Netezza.
One important utility developers need is the ability to install Python packages before using those in their ML functions. NZInstall helps with that. It takes in a package name and returns an output code to indicate whether the package is installed. An output of 0 indicates that the package is successfully installed on Netezza.
NZInstall syntax
NZInstall(package_name)
Usage
from nzpyida.ae.install import NZInstall
idadb = IdaDataBase('weather', 'admin', 'password')
nzinstall = NZInstall(idadb, package_name)
result = nzinstall.getResultCode()