Comment 4 for bug 1165281

Revision history for this message
Dac Chartrand (conner-bw) wrote :

Installation completed with a workaround that I will document below.

This bug can be summarized in two parts.

-=-=-

#1) GUI Installer crashed with black screen at start of unpacking phase. Had to reboot.

Unsolved mystery.

-=-=-

#2) Running `sudo apt-get dist-upgrade` gave an error. Workaround provided by link in comment #3.

$ sudo nano -w /usr/lib/python2.7/sre_constants.py

Look for:
  from _sre import MAXREPEAT

Replace with:
  MAXREPEAT = 65535
  #from _sre import MAXREPEAT

$ sudo nano -w /usr/lib/python2.7/sre_constants.py
$ nano -w /usr/lib/python2.7/sre_parse.py

Look for:
 from _sre import MAXREPEAT

Replace with:
 #from _sre import MAXREPEAT

-=-=-

Hope this helps someone.