def getArch(self): bits = platform.architecture()[0] # need to add arm support -- ticket #103 if bits == "64bit": return "x86_64" else: return "i686"