Browse code

Remove conflicting packages in Ubuntu

Following packages conflict with pip installed versions:
* httplib2
* pyasn1-modules

Change-Id: Ic4f70f839765e67394509cc543560aac7f50e287

Witek Bedyk authored on 2020/01/28 00:00:12
Showing 1 changed files
... ...
@@ -79,6 +79,8 @@ function fixup_ubuntu {
79 79
     # manifest of what to remove.  However, in most cases, simply
80 80
     # overwriting works.  So this hacks around those packages that
81 81
     # have been dragged in by some other system dependency
82
+    sudo rm -f /usr/lib/python3/dist-packages/httplib2-*.egg-info
83
+    sudo rm -f /usr/lib/python3/dist-packages/pyasn1_modules-*.egg-info
82 84
     sudo rm -f /usr/lib/python3/dist-packages/PyYAML-*.egg-info
83 85
 }
84 86