Is it possible to use os.system
to install a program on apt-get. Here's what I've tried so far:
if comm == "install":
os.system("gnome-terminal -e sudo apt-get install"+args)
(args being the argument supplied to the command)
Is it possible to use os.system
to install a program on apt-get. Here's what I've tried so far:
if comm == "install":
os.system("gnome-terminal -e sudo apt-get install"+args)
(args being the argument supplied to the command)