Help with Python(abi)
I've installed the latest Python 2.7 and Python3 but when I try to install Odoo 12, I get this message
warning: odoo_12.0.latest.noarch.rpm: Header V4 RSA/SHA256 Signature, key ID 8183cbb5: NOKEY Error: Failed dependencies:
python(abi) = 3.6 is needed by odoo-12.0.post20181127-1.noarch
Any help please to resolve this! Thanks
I suggest to learn how to use pyenv (https://github.com/pyenv/pyenv). It's available via copr: https://copr.fedorainfracloud.org/coprs/nili/pyenv/
How did you install Python? It's possible you've installed some python3 version less than 3.6. It's also possible that while you've installed python3.6, you're using an older version of python in this particular scenario. As is pointed out above, pyenv is a great tool. However, in this particular scenario, where you want to run a service, virtualenvmight be a more reliable scenario (I've run into problems running webapps with pyenv). https://virtualenv.pypa.io/en/latest/ (pyenv is a wrapper around virtualenv for convenience in the terminal)