Skip to content Skip to sidebar Skip to footer

Python3 Error When Installing Odoo

I know you are finding the solution of your error of this :


dpkg: dependency problems prevent configuration of odoo:
 odoo depends on python3-babel; however:
  Package python3-babel is not installed.
 odoo depends on python3-dateutil; however:
  Package python3-dateutil is not installed.
 odoo depends on python3-decorator; however:
  Package python3-decorator is not installed.
 odoo depends on python3-docutils; however:
  Package python3-docutils is not installed.
 odoo depends on python3-feedparser; however:
  Package python3-feedparser is not installed.
 odoo depends on python3-gevent; however:
  Package python3-gevent is not installed.
 odoo depends on python3-html2text; however:
  Package python3-html2text is not installed.
 odoo depends on python3-jinja2; however:
  Package python3-jinja2 is not installed.
 odoo depends on python3-lxml; however:
  Package python3-lxml is not installed.
 odoo depends on python3-mock; however:
  Package python3-mock is not installed.
 odoo depends on python3-ofxparse; however:
  Package python3-ofxparse is not installed.
 odoo depends on python3-passlib; however:
  Package python3-passlib is not installed.
 odoo depends on python3-pil; however:
  Package python3-pil is not installed.
 odoo depends on python3-psutil; however:
  Package python3-psutil is not installed.
 odoo depends on python3-psycopg2; however:
  Package python3-psycopg2 is not installed.
 odoo depends on python3-pydot; however:
  Package python3-pydot is not installed.
 odoo depends on python3-pyparsing; however:
  Package python3-pyparsing is not installed.
 odoo depends on python3-pypdf2; however:
  Package python3-pypdf2 is not installed.
 odoo depends on python3-reportlab; however:
  Package python3-reportlab is not installed.
 odoo depends on python3-serial; however:
  Package python3-serial is not installed.
 odoo depends on python3-tz; however:
  Package python3-tz is not installed.
 odoo depends on python3-usb; however:
  Package python3-usb is not installed.
 odoo depends on python3-vatnumber; however:
  Package python3-vatnumber is not installed.
 odoo depends on python3-werkzeug; however:
  Package python3-werkzeug is not installed.
 odoo depends on python3-xlsxwriter; however:
  Package python3-xlsxwriter is not installed.
 odoo depends on python3-libsass; however:
  Package python3-libsass is not installed.
 odoo depends on python3-suds; however:
  Package python3-suds is not installed.



That's a hell of problem, doesn't it?
Well, i spent 3 days fixing it (i know i am not linux professional but at least i finished it hehe)




Before We Go, What Actually Happen Here?

So, you are trying to install odoo and this is happening.
The problem is, Odoo needs to be running with some mandatory program called Python. For Odoo 12, Python version 3 is needed.

Hey, i've already install Python 3 but it still give me error..

Yep, probably because some packages of it has missing.
All you need to do, is to download this file.

it's Python3 packages that i collected, now you just need to follow the instruction below :

  1. Download the link above;
  2. Extract it somewhere in your computer;
  3. Copy it to USB Stick, and mount it to your linux that runs Odoo;
  4. Open terminal and log in as Root;
  5. Type command directory to your usb stick. It is usually mounted in sdb. You know... just... mount it. I am not gonna give you step how to mount it, because there's is so many in google. Try some.
  6. After you get inside your USB stick, head to the python packages directory that you have been downloaded
  7. Now type these command to install it all
    dpkg -i *.deb
  8. Wait for some time, it will install the dependencies.
  9. Now, try to install Odoo again.
Is it works? or not?
If not, leave a comment below and i will try to help you out!