Hi,
I am trying to run Odoo10 and Odoo12 on the same server, I did following configuration.
Installed Python2.x and Python 3.x
Downloaded Odoo 10 and 12
And installed all dependencies
Created two configuration files with two different ports
And run on terminal like
python <path_to_odoo_bin/./odoo-bin --conif=/etc/odoo10.conf
python3 <path_to_odoo_bin/./odoo-bin --conif=/etc/odoo12.conf
So far everything is working fine.
My questions is, I need to run odoo as services like
sudo /etc/init.d/odoo10.server start
and
sudo /etc/init.d/odoo12.server start
How can i tell Odoo to choose correct python version?
ie, Odoo 10 = python2.x and Odoo12 = Python3.x