Page 1 of 2

Ubuntu 22.04

PostPosted: Wed Jun 22, 2022 2:19 pm
by koyimoy
Hey all, thanks for providing this nice tool.

But unfortunately, I'm getting E: Unable to locate package makehuman-community error when trying to install Makehuman from ppa. Does that mean that there is no build for 22.04 (yet?)

Re: Ubuntu 22.04

PostPosted: Thu Jun 23, 2022 5:39 am
by joepal
yes, I'm lagging behind on rebuilding the deb for 22.04. There is nothing per se blocking MH from running on it.

Re: Ubuntu 22.04

PostPosted: Tue Aug 30, 2022 3:17 pm
by zoo3hans
Hi

I also wait urgently for a Ubuntu 22.04 LTS release of makehuman-communtiy.

Yours, hs

Re: Ubuntu 22.04

PostPosted: Tue Sep 27, 2022 11:06 am
by 01franz
Hello
a workaround edit /etc/apt/sources.list.d/makehuman-official-ubuntu-makehuman-community-jammy.list
replace jammy with focal


deb https://ppa.launchpadcontent.net/makehu ... ty/ubuntu/ jammy main

Code: Select all
deb https://ppa.launchpadcontent.net/makehuman-official/makehuman-community/ubuntu/ focal main

Re: Ubuntu 22.04

PostPosted: Wed Sep 28, 2022 7:55 am
by 01franz
workaround do not works. Install works fin but make-human do not start.

Re: Ubuntu 22.04

PostPosted: Wed Nov 02, 2022 8:24 pm
by goldphnx
joepal wrote:yes, I'm lagging behind on rebuilding the deb for 22.04. There is nothing per se blocking MH from running on it.

I can confirm makehuman does not run on ubuntu 22.04.1. It ran fine on 20.04.5 but after upgrade it no longer runs. Myself and others get this error in terminal "error: module 'collections' has no attribute 'Callable'"

Re: Ubuntu 22.04

PostPosted: Thu Nov 03, 2022 12:48 am
by Aranuvir
Currently run MakeHuman from source, which shouldn't be a big deal on Linux.

Re: Ubuntu 22.04

PostPosted: Thu Nov 03, 2022 8:36 pm
by PayItForward
I came here to ask for the ppa but oh well ... anyways

Install from source:

https://github.com/makehumancommunity/makehuman

1. Download zip file (from link above)
2. Extract (and move) to final destination

3. Install dependencies (Debian / Ubuntu / Mint):
a) open terminal and enter the following
b) apt install python3-opengl python3-pyqt5 python3-pyqt5.qtopengl python3-pyqt5.qtsvg

4. Go to /insertyourpath/makehuman-master/makehuman/
5. find shell script named makehuman
a) open properties by right-clicking file
b) if necessary make executable
c) open terminal again and enter ./makehuman (the game should start now)

6. Make starter
a) On desktop create a text file, open and insert something like this:

Code: Select all
[Desktop Entry]
Name=MakeHuman
GenericName=3D human modeler
Comment=3D human modeling
Keywords=3d;cg;modeling;python;
Exec=/insertyourpath/makehuman-master/makehuman/makehuman
Icon=/insertyourpath/makehuman-master/makehuman/icons/makehuman.png
Terminal=false
Type=Application
Categories=Graphics;3DGraphics;


b) close file and rename to makehuman.desktop (remove old extension like .txt)
c) open properties by right-clicking file
d) make executable

Done. Your good to go ;)

Re: Ubuntu 22.04

PostPosted: Tue Dec 27, 2022 7:30 pm
by gus812
Hi all,
Trying to get mh to work on linuxmint-21.1-cinnamon-64bit. Got around the callible error, followed by a MutableSet error by adding these lines to makehuman.py.
import collections
collections.Callable = collections.abc.Callable
collections.MutableSet = collections.abc.MutableSet
Now i get.
File "/usr/share/makehuman-community/./lib/qtgui.py", line 978, in setProgress
self.setValue(min_ + progress * (max_ - min_))
TypeError: setValue(self, int): argument 1 has unexpected type 'float'
I think it expects an integer, maybe?

Re: Ubuntu 22.04

PostPosted: Wed Dec 28, 2022 6:42 am
by joepal
Are you running from source? Otherwise this might help: https://github.com/makehumancommunity/m ... 1364701510