Skip to content

Commit 7c40d33

Browse files
authored
Merge pull request #57 from bigzed/fix-installation-ubuntu-16.04
Added `python-dbus` to `apt-get` packages
2 parents 128bc1f + b38836d commit 7c40d33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def install_dependency_package(self):
8282
elif subprocess.call("which apt-get", shell=True) == 0:
8383
package = "python-qt4"
8484
subprocess.call("apt-get -q update", shell=True)
85-
if subprocess.call("apt-get -q -y install mtools util-linux parted python-qt4", shell=True) == 0:
85+
if subprocess.call("apt-get -q -y install mtools util-linux parted python-qt4 python-dbus", shell=True) == 0:
8686
result = True
8787
elif subprocess.call("which zypper", shell=True) == 0:
8888
package = "python-qt4"
@@ -102,4 +102,4 @@ def install_dependency_package(self):
102102

103103
install = Install()
104104

105-
install.mbusb()
105+
install.mbusb()

0 commit comments

Comments
 (0)