Hello, community. My Odoo 14 service is crashing after being online and I'm getting this error: no module named werkzeug.posixemulation. Any clue?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
Hi,
Can you try bellow commands and see,
sudo pip3 uninstall Werkzeug
sudo pip3 install Werkzeug==0.11.15After installing the above package, restart odoo service.
Thanks
I had the same problem with odoo v15. This fixed the problem
Hi,
Please check your requirements.txt file and its version
then install your package from the settings
Hope it helps
go and see requirement file they mentioned version of
Werkzeug
so as per that version install it from terminal or got to settings > click on Project > Python Interpreter > click on + sign > search workzeug > iselect version in below > and install it
pip3 install Werkzeug==version
Oddly enough the requirements.txt says this in the latest checkout of 14.0:
Werkzeug==0.16.1
So what breaks if you use this version? I mean we go back to 0.11... Why is Odoo going backwards? And why is the requirements.txt not up to date then?
EDIT: in my case I noticed after a while that I was running the system wide python3.8 binary and not the virtualenv python3.7 for which I had modified odoo-bin. After git stash pop to have the path set to my virtualenv python it worked again with 0.16.1.
Hope it helps someone else.
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
2
août 21
|
6243 | ||
|
2
juil. 21
|
3306 | ||
|
1
nov. 20
|
3682 | ||
|
0
avr. 24
|
794 | ||
|
0
déc. 23
|
1519 |
Excellent. Thanks for your comment.