码迷,mamicode.com
首页 > 编程语言 > 详细

arcgis python 获得arcgis安装版本和安装位置

时间:2019-09-30 20:16:34      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:ems   code   inf   str   python   get   and   installer   product   

import arcpy

print(arcpy.GetInstallInfo()[Version])

 

 和获得ArcGIS版本和安装位置

import arcpy

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

SourceDir : G:\setup\arcgis10.2.2\arcgis10.2.2\ArcGIS_Desktop_1022_140090\Desktop\SetupFiles\
InstallDate : 2019.07.19
InstallDir : c:\program files (x86)\arcgis\desktop10.2\
ProductName : Desktop
BuildNumber : 3552
InstallType : N/A
Version : 10.2.2
SPNumber : N/A
Installer : dell
SPBuild : N/A
InstallTime : 17:43:58

arcgis python 获得arcgis安装版本和安装位置

标签:ems   code   inf   str   python   get   and   installer   product   

原文地址:https://www.cnblogs.com/gisoracle/p/11613791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!