#!/usr/bin/python2 | |
import os | |
# Install infoedit | |
def run(): | |
print "\nINSTALLING infoedit" | |
print "**************" | |
os.system("git clone --depth 1 https://github.com/NDN-Routing/infoedit.git") | |
os.chdir("infoedit") | |
os.system("make") | |
os.system("sudo make install") | |
os.chdir("..") |