ListInstallations (arcpy)
Récapitulatif
The ListInstallations function returns a Python List of the installation types (server, desktop, and engine).
Syntaxe
ListInstallations ()
Type de données | Explication |
String |
The Python List containing installation names returned from the function. |
Exemple de code
ListInstallations example
Return a list of installation types on the computer.
import arcpy
for install in arcpy.ListInstallations():
print(install)
Thèmes connexes
4/26/2014