Skip To Content

GetInstallInfo

Zusammenfassung

The GetInstallInfo function returns a dictionary that contains information on the installation.

Syntax

GetInstallInfo ()
Rückgabewert
DatentypErklärung
Dictionary

The function returns a dictionary containing the properties of the installation.

Codebeispiel

GetInstallInfo example

Return installation information.

import arcpy

# Use the dictionary iteritems to iterate through 
#   the key/value pairs from GetInstallInfo
d = arcpy.GetInstallInfo()
for key, value in list(d.items()):
    # Print a formatted string of the install key and its value
    #
    print("{:<13} : {}".format(key, value))
GetInstallInfo example 2

Return the product version.

import arcpy
print(arcpy.GetInstallInfo()['Version'])

Verwandte Themen


In diesem Thema