It seems like the umake version contained in the ubuntu 16.04 ppa ppa:ubuntu-desktop/ubuntu-make
breaks due to a change in the API of the python ProgressBar
module…
The error log looks like this:
|
|
However, I failed to find a file corresponding to File "/usr/lib/python3/dist-packages/umake/frameworks/baseinstaller.py"
in the github repo, thus failing to start an pr/issue.
For those who encounter similar issue, here’s the quick fix…
Use your favorite editor and root access to open the file
/usr/lib/python3/dist-packages/umake/frameworks/baseinstaller.py
, e.gsudo gedit /usr/lib/python3/dist-packages/umake/frameworks/baseinstaller.py
.Go to line 288.
Change the line
if not self.pbar.finished: # drawing is delayed, so ensure we are not done first
toif True:
, save and quit.The progress bar may looks kinda broken after the fix, but will have no interruption to any installation…
2017/11/30