πŸ“„ Oduist Connect Installation

Oduist Connect Installation

Installation check list

  • Create your account on the Oduist Customer Portal (if you don’t have one yet).
  • Download the latest modules from out Github repo.
  • Install the dependencies from the included requirements.txt file.
  • Install the required Connect modules into Odoo.
  • Update your company details and register your instance via Connect β†’ Settings β†’ Registration menu.
  • Copy Twilio API auth and key from your Twilio console (yes, you must have a Twilio account).
  • Synchronize Twilio numbers and any other data with Oduist Connect

Installation video


Odoo 18.0 docker installation notes

This is related to official Odoo 18.0 docker setup. Here is how to build a custom image for Oduist Connect:

FROM odoo:18.0
USER root
RUN pip3 install twilio elevenlabs openai $(pip freeze | grep typing_extensions) --break-system-packages

USER odoo