04-10-2023, 03:36 AM
With the live dvd/usb once you boot to the desktop and BEFORE you attempt an install, edit (as Administrator):
and change:
to:
Don't change the indentation, spacing or format of py files, or this won't work. Good luck.
Save and close.
Now try the installer.
Code:
/usr/lib/python3/dist-packages/parted/device.py
and change:
Code:
@property
def model(self):
"""Model name and vendor of this device."""
return self.__device.model
to:
Code:
@property
def model(self):
"""Model name and vendor of this device."""
try:
return self.__device.model
except UnicodeDecodeError:
return "MMC H8G4a"
Don't change the indentation, spacing or format of py files, or this won't work. Good luck.
Save and close.
Now try the installer.