Teradata Package for Python Function Reference on VantageCloud Lake - list_base_envs - Teradata Package for Python - Look here for syntax, methods and examples for the functions included in the Teradata Package for Python.
Teradata® Package for Python Function Reference on VantageCloud Lake
- Deployment
- VantageCloud
- Edition
- Lake
- Product
- Teradata Package for Python
- Release Number
- 20.00.00.03
- Published
- December 2024
- ft:locale
- en-US
- ft:lastEdition
- 2024-12-19
- dita:id
- TeradataPython_FxRef_Lake_2000
- Product Category
- Teradata Vantage
- teradataml.scriptmgmt.lls_utils.list_base_envs = list_base_envs()
- DESCRIPTION:
Lists the available Python and R base environments versions configured in the
Open Analytics Framework.
Note:
Function is not applicable for conda environments.
User can use any Python version while creating conda environment as long as Anaconda supports it.
PARAMETERS:
None.
RETURNS:
Pandas DataFrame.
If the operation is successful, function returns
environment name, language and version of the language interpreter in a Pandas dataframe.
RAISES:
TeradataMlException.
EXAMPLES:
>>> from teradataml import list_base_envs
>>> list_base_envs()
base_name language version
0 python_3.7.13 Python 3.7.13
1 python_3.8.13 Python 3.8.13
2 python_3.9.13 Python 3.9.13
3 r_4.1.3 R 4.1.3
4 r_3.6.3 R 3.6.3
5 r_4.0.2 R 4.0.2
>>>