Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

No module named 'werkzeug.contrib'

Naroči se

Get notified when there's activity on this post

This question has been flagged
10 Odgovori
131327 Prikazi
Avatar
elkafil

error message when i try to start odoo 12 instance on ubuntu 18.04


-bash: cd: /oprt: No such file or directory
root@vmi340591:/opt/odoo/odoo/odoo# cd /opt
root@vmi340591:/opt# ./start.sh
root@vmi340591:/opt# Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/odoo-bin", line 5, in <module>
import odoo
File "/opt/odoo/odoo/odoo/odoo/__init__.py", line 129, in <module>
from . import service
File "/opt/odoo/odoo/odoo/odoo/service/__init__.py", line 7, in <module>
from . import wsgi_server
File "/opt/odoo/odoo/odoo/odoo/service/wsgi_server.py", line 25, in <module>
import werkzeug.contrib.fixers
ModuleNotFoundError: No module named 'werkzeug.contrib'

0
Avatar
Opusti
Avatar
Darshan Patel
Best Answer


It seems there is some issue with the new/current version 1.0.0 of the Werkzeug installation on ubuntu 18.04

Try below command, it worked for me :

sudo pip3 uninstall Werkzeug (will uninstall earlier version, press 'y' to proceed uninstallation, if asked)
sudo pip3 install Werkzeug==0.11.15 (or check requirements.txt which is under your odoo version and install the version mentioned there.)

As on May 21, one could use now to newer version "sudo pip3 install Werkzeug==0.16.0"

Regards, Darshan!


10
Avatar
Opusti
Humanoide servicios para la pyme, S.L.N.E.

not working for me

Darshan Patel

Maybe you could try this with sudo to install a newer version

"sudo pip3 install Werkzeug==0.16.0"

Azharul Amin Mulla

worked for me

Antônio Sebastian

worked for me to install a newer version

Avatar
Latnok.Africa
Best Answer

@elkafil

No need more magic to solve ModuleNotFoundError: No module named 'werkzeug.contrib' as the error message says.

Please check out  your /odoo/requirement.txt  dependancy of werkzeug  ( 0.14.1 in my case),  then install it by :

$ cat /odoo/requirement.txt           and find down the version of werkzeug requirement, then
$ sudo pip3 install werkzeug==0.14.1


Hope this will help
2
Avatar
Opusti
Humanoide servicios para la pyme, S.L.N.E.

I have the same problem. This solution is not working for me.

Avatar
Enrique David HM
Best Answer

Anyone managed to solve it? I have the same problem.

1
Avatar
Opusti
Avatar
Temitope Joseph Shittu
Best Answer

I'm having same problem right now. This script has always worked for me until now. Who has a solution please? I have an urgent project I'm supposed to submit soonest


Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Traceback (most recent call last):
File "./odoo-bin", line 5, in <module>
import odoo
File "/opt/odoo/odoo/odoo/__init__.py", line 117, in <module>
from . import service
File "/opt/odoo/odoo/odoo/service/__init__.py", line 7, in <module>
from . import wsgi_server
File "/opt/odoo/odoo/odoo/service/wsgi_server.py", line 25, in <module>
import werkzeug.contrib.fixers
ModuleNotFoundError: No module named 'werkzeug.contrib'
root@ubuntu-s-1vcpu-1gb-nyc3-01:~#

0
Avatar
Opusti
Avatar
Dishan Madushanka
Best Answer

Hi Elkafil,

I am assuming, that the wrong version of Werkzeug was installed in the fist place. This usually happens, when you have 2 versions of python installed, and you use 'pip' for installing dependencies rather than using 'pip3'. Hope this helped!

0
Avatar
Opusti
elkafil
Avtor

thanks

elkafil
Avtor

i reinstall server and dependencies with pip3 only but same problem

Avatar
Diego Almonte
Best Answer

Hi,

I have the same problem, i'm installing a new server with Odoo with the same script thta I have used before many times, but since yesterday I've being having this same error and dont know what to do

0
Avatar
Opusti
Avatar
Lamia salem
Best Answer

i solved this by running these flowing commeds :

python3 -m pip uninstall werkzeug
python3 -m pip install werkzeug==0.16.0

NOTE: find werkzeug version in you requirmnet.txt



 

-1
Avatar
Opusti
Avatar
Jhe
Best Answer

My version is odoo11.  And since I install environment in ubuntu16.04. I also got this issue.

After tracing back errors, I got this error.

`Failed building wheel for pyldap`

And after I run this code.
`sudo apt-get install libsasl2-dev python-dev libldap2-dev libssl-dev`
and
`pip3 install -r requirements.txt`

Make sure your werkzeug version in requirements.txt is correct with official document.

then you can execute odoo.


-1
Avatar
Opusti
Avatar
elkafil
Avtor Best Answer

i resolved my problem by using this script for my install 


sudo wget https://raw.githubusercontent.com/Yenthe666/InstallScript/12.0/odoo_install.sh
-1
Avatar
Opusti
Avatar
Ayman Al Atrash
Best Answer

Try 

pip3 install werkzeug==0.16.0
-1
Avatar
Opusti
Humanoide servicios para la pyme, S.L.N.E.

Not working for me

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now