#!/usr/bin/python2 | |
import os | |
# Install tools | |
def run(): | |
print "\nINSTALLING tools" | |
print "***********************" | |
helper_path = os.path.dirname(os.path.realpath(__file__)) | |
cwd_path = os.getcwd() | |
os.chdir(helper_path) | |
os.chdir("tools") | |
os.system("make") | |
os.system("sudo make install") | |
os.chdir(cwd_path) |