gdebi yerine dpkg ile paket yuklenilmesi saglandi

This commit is contained in:
Ömer Çakmak 2018-03-20 16:21:33 +03:00
parent f81c8e1953
commit 3e9c690302
1 changed files with 9 additions and 5 deletions

View File

@ -224,8 +224,12 @@ class Util:
@staticmethod
def install_with_gdebi(full_path):
command_dpkg = 'dpkg -i {0}'
command_dep = 'apt -f install -y'
commands = [command_dpkg.format(full_path),command_dep]
for cmd in commands:
try:
process = subprocess.Popen('gdebi -n ' + full_path, shell=True)
process = subprocess.Popen(cmd, shell=True)
process.wait()
except:
raise