blob: ba8624b8f5c3464355f392f3bf62c666579c9ab5 [file] [log] [blame]
#!/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("..")