ListInstallations
摘要
The ListInstallations function returns a Python List of the installation types (server, desktop, and engine).
语法
ListInstallations ()
数据类型 | 说明 |
String |
The Python List containing installation names returned from the function. |
代码示例
ListInstallations example
Return a list of installation types on the computer.
import arcpy # Get a list of installation types on the computer and # print to the Interactive Window # installList = arcpy.ListInstallations() for install in installList: print install
相关主题
7/10/2012