I am trying to install IBM Cloud Private-CE as per:
on Fedora 37 with:
[root@bc1 ~]# python --version Python 3.11.1
[root@bc1 ~]# pip --version pip 22.2.2 from /usr/lib/python3.11/site-packages/pip (python 3.11)
and am getting error from:
[root@bc1 cluster]# podman run --net=host -t -e LICENSE=accept -v /opt/ibm-cloud-private-3.1.2/cluster:/installer/cluster:Z ibmcom/icp-inception:3.1.2 check
File "/tmp/ansible_3uadhnbq/ansible_module_setup.py", line 125, in <module>
from ansible.module_utils.basic import AnsibleModule
File "/tmp/ansible_3uadhnbq/ansible_modlib.zip/ansible/module_utils/basic.py", line 83, in <module>
ImportError: cannot import name 'Mapping' from 'collections' (/usr/lib64/python3.11/collections/__init__.py)
in VS Code ImportError: cannot import name 'Mapping' from 'collections'
suggests: change:
from collections import Mapping
to
from collections.abc import Mapping
the referencing Python file seems to be within their icp-inception:3.1.2 container,
might anyone know about this problem?