Problem installing openstack via devstack script

error message

I had a problem installing openstack via devstack script on my Ubuntu 15 lts.

It says:

sorry, but this version only supports 100 named groups. AssertionError: sorry, but this version only supports 100 named groups ------------------------ -------------- - Rollback cryptography removal

+4
source share
5 answers

Hi, this is due to updating picparser 2.14 package on pypi today. More information can be found in [1] and [2].

[1] http://lists.openstack.org/pipermail/openstack-dev/2016-October/104909.html
[2] https://github.com/eliben/pycparser/issues/147

"pycparser === 2.14" /opt/stack/requirements/upper -constraints.txt "pycparser === 2.13"

pip , DevStack 2.13 2.14, .

=============================================== ========================= 10/4 (JST): [2], .:)

+7

pythons pycparser lib, , pycparser == 2.13 requirements.txt pip.

+3

, pycparser, :

pip uninstall pycparser
+1

pycparser , , , . --no-binary .

--no-binary pycparser .

0

, -...

Our Devstack also failed due to this pycparser error. We just downgraded pycparser to 2.13 in require.txt / upper_requirement.txt and turned off the "tempest" service (this service will install cryptography and pycparser) in local.conf. After that, our Devstack installation was successful.

NOTE. Comment out the line 'RECLONE = yes' in the local.conf file.

thank

0
source

Source: https://habr.com/ru/post/1656536/


All Articles