Skip to Content
Menu
This question has been flagged
1 Reply
5232 Views

Getting error at the end of installation of odoo 10 on wndows 10: UnicodeEncodeError: 'ascii' codec can't encode character u'\xe9' in position 10: ordinal not in range(128)

Avatar
Discard
Best Answer

This happens because you created the database with wrong encoding/collation

drop the db and let odoo create it 

psql

drop database odoo;

# or create it yourself like odoo expects it

CREATE DATABASE "odoo" ENCODING 'unicode' LC_COLLATE 'C' TEMPLATE "template0"

Avatar
Discard