i have this error running odoo-log, i installed odoo 12 correctly , postgresql as well.
"C:\Program Files (x86)\Odoo 12.0\python\python.exe" "C:/Program Files (x86)/Odoo 12.0/server/odoo-bin"
Traceback (most recent call last):
File "C:/Program Files (x86)/Odoo 12.0/server/odoo-bin", line 5, in <module>
import odoo
File "C:\Program Files (x86)\Odoo 12.0\server\odoo\__init__.py", line 129, in <module>
from . import service
File "C:\Program Files (x86)\Odoo 12.0\server\odoo\service\__init__.py", line 7, in <module>
from . import wsgi_server
File "C:\Program Files (x86)\Odoo 12.0\server\odoo\service\wsgi_server.py", line 25, in <module>
import werkzeug.contrib.fixers
ModuleNotFoundError: No module named 'werkzeug.contrib'
Process finished with exit code 1
this is the configuration : HELP PLEASE , i tried almost everything but no result
It seems some issue with the new/current version 1.0.0 of the Werkzeug installation
Try these commands:
pip3 uninstall Werkzeug # will uninstall earlier version
pip3 install Werkzeug==0.11.15 # check the requirements.txt and installed that version
Otherwise, you can use cachelib as a drop-in replacement.