After installing and setting up odoo15 with pycharm, its show up this message. I can access to databse creatiion page corrrectly, but after creating a database, it says
Database creation error: module 'werkzeug.routing' has no attribute 'NumberConverter'
This are the latest logs
File "/home/ting-er/Odoo/15.0/odoo/odoo/service/server.py", line 1210, in load_server_wide_modules
odoo.modules.module.load_openerp_module(m)
File "/home/ting-er/Odoo/15.0/odoo/odoo/modules/module.py", line 396, in load_openerp_module
__import__('odoo.addons.' + module_name)
File "/home/ting-er/Odoo/15.0/odoo/odoo/addons/base/__init__.py", line 5, in
from . import models
File "/home/ting-er/Odoo/15.0/odoo/odoo/addons/base/models/__init__.py", line 27, in
from . import ir_http
File "/home/ting-er/Odoo/15.0/odoo/odoo/addons/base/models/ir_http.py", line 71, in
class SignedIntConverter(werkzeug.routing.NumberConverter):
AttributeError: module 'werkzeug.routing' has no attribute 'NumberConverter'
2022-07-29 14:04:11,417 79856 INFO ? odoo.service.server: HTTP service (werkzeug) running on TingEr:8015
2022-07-29 14:04:28,564 79856 INFO ? odoo.http: HTTP Configuring static files
2022-07-29 14:04:28,591 79856 INFO ? odoo.http: Generating nondb routing
2022-07-29 14:04:28,609 79856 INFO ? werkzeug: 127.0.0.1 - - [29/Jul/2022 14:04:28] "GET / HTTP/1.1" 303 - 1 0.002 0.039
and the odoo.conf file
[options]
; This is the password that allows database operations:
admin_passwd = 123456
db_host = localhost
db_user = odoo15
db_password = 123456
db_port = 5432
addons_path = /home/ting-er/桌面/Odoo/15.0/odoo/addons
http_port = 8015