Python / Odoo Developer

Welcome!

This community is for professionals and enthusiasts of our products and services. Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

0

Install Odoo

Avatar
Administrator

Install Odoo 8 link

Install Odoo 11 link

Install Odoo 13 link

Install virtualenv

pip3 install virtualenv

Create a new Python virtual environment for the Odoo installation

cd /opt/odoo
virtualenv -p python3 odoo11-venv

Activate the environment

source odoo11-venv/bin/activate

Install all required Python modules

pip3 install -r odoo11/requirements.txt

Deactivate virtual environment

deactivate

Avatar
Discard