Plone 5.0.10 install error

when installing Plone 5.0.10 with Plone-5.0.10-UnifiedInstaller I get the error message below. Anyone knows what the Propblem is?

Install log:…..

error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
An error occurred when trying to install /home/users/mlpd/Plone_rfnews_dev/buildout-cache/downloads/dist/MultiMapping-2.13.0.zip. Look above this message for any errors that were output by easy_install.
While:
Installing.
Getting section instance.
Initializing section instance.
Installing recipe plone.recipe.zope2instance.
Getting distribution for 'MultiMapping==2.13.0'.

An internal error occurred due to a bug in either zc.buildout or in a
recipe being used:
Traceback (most recent call last):
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/buildout.py", line 2127, in main
getattr(buildout, command)(args)
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/buildout.py", line 681, in install
[self[part]['recipe'] for part in install_parts]
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1278, in getitem
options._initialize()
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1386, in _initialize
self.initialize()
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1392, in initialize
recipe_class = _install_and_load(reqs, 'zc.buildout', entry, buildout)
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1342, in _install_and_load
allow_hosts=buildout._allow_hosts
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/easy_install.py", line 924, in install
return installer.install(specs, working_set)
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/easy_install.py", line 726, in install
for dist in self._get_dist(req, ws):
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/easy_install.py", line 570, in _get_dist
dists = [_move_to_eggs_dir_and_compile(dist, self._dest)]
File "/home/users/mlpd/Plone_rfnews_dev/zinstance/local/lib/python2.7/site-packages/zc/buildout/easy_install.py", line 1704, in _move_to_eggs_dir_and_compile
[tmp_loc] = glob.glob(os.path.join(tmp_dest, '*'))
ValueError: need more than 0 values to unpack

First, I thought that this post is from 2016, not from 2026 :skull:
The only recommendation: take the debugger and analyze the related error condition.
Python 2.7 and Plone 5.0 are totally outdated and unsupported.

1 Like

Search for similar errors in the forum. Do you have all the requirements? Dev libraries and headers?

I was able to build outdated Docker images with outdated Plone versions (4.3.x) for some customers. If you are interested, you can DM me :slight_smile: (It’s not an easy task)

I briefly chased this for you and noticed that there is a .dev version that includes different dependency pins. Comparing master...2.13 · zopefoundation/MultiMapping · GitHub

That Multimapping package seems to be doing something unusual that maybe, perhaps, your site does not need. My approach would be to see if you can do without, and start. Once you have a running Plone, immediately update it to 5.1-latest or higher.

Good luck.