As is probably known by the keen reader of these forums, there have often been dependency and build problems with makehuman. Currently we're shipping four different packages for linux, one for windows and one for osx. This has been necessary since MH contains compiled C parts which are platform-specific. Unfortunately those parts also contain hard dependencies on specific python versions, which means you would need to have exactly python 2.6 to run the program. Which caused no end of trouble, since the latest linux distributions only ship with 2.7.
To solve this, Glynn Clements has made an effort to remove all compiled parts from MH. With this, we can ship one package which is suitable for all platforms, independently on architecture and minor python version. The performance is still the same, since the C parts have moved to NumPy.
For now, this code branch is experimental. However, it is likely that this is going to become the main branch of MH once we've stomped out the outstanding bugs with the transition from C to NumPy.
To get this properly tested, it would be very welcome if people tried the pure python version of MH.
A linux tarball is available at: http://download.tuxfamily.org/makehuman ... 120707.tgz
The SVN branch is available at: https://makehuman.googlecode.com/svn/br ... nnsbranch/
In the linux tarball is a script called INSTALL_DEB_DEPENDENCIES.bash for running apt-get to install the required python packages etc. On RPM-based platforms, do the same with yum or similar to get the packages. (if you do, please post a list of package names here so we can wrap it into a script).
A windows package is in the works, but will take a bit longer. The main problem here is that we want to bundle the dependencies. However, if you can download and install the dependencies on your own, the SVN version should run on windows too.