Last active
January 31, 2018 16:26
-
-
Save jeffgreenca/ff7b1129f0b4898801739e7f5aef47f2 to your computer and use it in GitHub Desktop.
Validate if the arcgis python module is available
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import platform | |
print("Using python version %s" % platform.python_version()) | |
import arcpy | |
print("Everything seems OK") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment