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)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
1
Reply
5232
Views
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"
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up