Anyone does Plone use CentOS 8 or RHEL 8

I want to try Plone 5.2 on Python 3 on CentOS 8. I could not install it. Anyone does already use CentOS 8 or RHEL 8?

I try to install Plone 5.2

$ dnf search "Development tools"
$ sudo dnf group install "Development Tools"
$ sudo dnf install libxml2-devel
$ sudo dnf install libxslt-devel
$ sudo dnf install openssl-devel
$ sudo dnf install bzip2-devel libjpeg-turbo-devel poppler-utils libpng-devel
$ sudo dnf install python36-devel


$ ./install.sh --with-python=/usr/bin/python3 --password=admin --target=/opt/plone/plone52 standalone

The install was successful. But I got an error.

ZConfig.ConfigurationError: The specified locale "None" is not supported by yoursystem.
See your operating system documentation for more

I set a local as here.

$ export LC_ALL=C

Plone 5.2 is running!!

I modified the local, because I got an error as UnicodeEncodeError

$ export C.UTF-8

FWIW, I'd suggest using pyenv instead of the system python. CentOS/RHEL being ultra-stable are always behind a bit and that's usually not a problem per se but with 3.8.x already out I'd be a little more current. Plus you can set your environment variables within the virtualenv and not run into potential issues down the road when you need to upgrade.