サマリー
Returns a dictionary that contains information about the installation.
構文
GetInstallInfo ()
| データ タイプ | 説明 | 
| Dictionary | A dictionary containing the properties of the installation. The dictionary keys are as follows: 
 | 
コードのサンプル
Get the 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))Get the product version.
import arcpy
print(arcpy.GetInstallInfo()['Version'])