Ok... so the documentation for using map-get is non-existant, but it's apparently a python script, so I downloaded python(3.1)... still wasn't making it run, so I opened the python GUI, opened the script in it, and told it to run module... only to run into a syntax error in the script!
def run(cmd, mandatory=True):
print cmd
if os.system(cmd) and mandatory:
sys.stderr.write('Faild to run: %s' % cmd)
sys.exit(2)/code]
It says SyntaxError, invalid syntax, and highlights the "cmd" part.