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,11 +224,15 @@ class Util:
@staticmethod @staticmethod
def install_with_gdebi(full_path): def install_with_gdebi(full_path):
try: command_dpkg = 'dpkg -i {0}'
process = subprocess.Popen('gdebi -n ' + full_path, shell=True) command_dep = 'apt -f install -y'
process.wait() commands = [command_dpkg.format(full_path),command_dep]
except: for cmd in commands:
raise try:
process = subprocess.Popen(cmd, shell=True)
process.wait()
except:
raise
@staticmethod @staticmethod
def install_with_apt_get(package_name, package_version=None): def install_with_apt_get(package_name, package_version=None):