Moderator: joepal
# Add the repo
sudo add-apt-repository ppa:makehuman-official/makehuman-community
# Edit the repo file
sudo nano /etc/apt/sources.list.d/makehuman-official-ubuntu-makehuman-community-jammy.list
# replace "jammy" by "impish", it should look like this:
deb https://ppa.launchpadcontent.net/makehuman-official/makehuman-community/ubuntu/ impish main
# close+save (Ctrl+x and "y" to save changes), and update apt
sudo apt update
# install makehuman
sudo apt install makehuman-community
# Recommended but not required: install recommended packages
sudo apt install libgle3 python3-tk
# /usr/share/makehuman-community/lib/language.py: Line 116
- class OrderedSet(collections.MutableSet):
+ class OrderedSet(collections.abc.MutableSet):
# /usr/share/makehuman-community/lib/log.py: Line 249
- if hasattr(logging, "captureWarnings") and isinstance(logging.captureWarnings, collections.Callable):
+ if hasattr(logging, "captureWarnings") and isinstance(logging.captureWarnings, collections.abc.Callable):
# /usr/share/makehuman-community/core/guicommon.py: Line 145
- if not self._view or not isinstance(self._view, collections.Callable):
+ if not self._view or not isinstance(self._view, collections.abc.Callable):
# /usr/share/makehuman-community/apps/gui/guimodifier.py: Line 202
- if hasattr(gui3d.app, cameraName) and isinstance(getattr(gui3d.app, cameraName), collections.abc.Callable):
+ if hasattr(gui3d.app, cameraName) and isinstance(getattr(gui3d.app, cameraName), collections.abc.Callable):
# /usr/share/makehuman-community/lib/qtgui.py: Line 978
- self.setValue(min_ + progress * (max_ - min_))
+ self.setValue(int(min_ + progress * (max_ - min_)))
Return to Bugs, problems and feature requests
Users browsing this forum: No registered users and 1 guest