Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How to setup Odoo 9, 10, 11 on the same server using vitualenv

Subscribe

Get notified when there's activity on this post

This question has been flagged
installationodoo
4 Replies
13588 Views
Avatar
Odoo Technics and Training

We like to setup Odoo 9, 10 and 11 on the same server. Odoo 9 and 10 are running only on Python 2 while Odoo 11 is running only on Python 3. How can both Versions been setup using virualenv on an Ubuntu 17.10 server where Python 3.6 is the default Python version.

Can anybody of that community point us to a tutorial or can let us know a step by step guide? We searched already on Google but weren't able to find a solution. We like to test out Odoo 11CE while still being able to run Odoo 9 CE and 10 CE on the same server as they still provide much more modules and themes for customers.

We read here http://joebergantine.com/articles/installing-python-2-and-python-3-alongside-each-ot/ that it is possible to get both on one server running but we struggle to get that done with Odoo 9, 10 and 11.

We installed a virtualenv for Python 2 and one for Python 3

We call Odoo 9 and Odoo 10 accordingly in etc/intit.d on Ubuntu 17.10 i.e. with

etc/init.d/odoo9-server

#!/bin/sh
### BEGIN INIT INFO
# Provides: odoo9-server
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Should-Start: $network
# Should-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Enterprise Business Applications
# Description: ODOO Business Applications
### END INIT INFO
PATH=/bin:/sbin:/usr/bin
VIRTENV=/home/odoo9/odoo-9.0
NAME=odoo9-server
DESC=ODOO9-SERVER
# Specify the daemon path for Odoo server.
DAEMON=/home/odoo9/o-src/server/openerp-server
# Specify the Odoo Configuration file path.
CONFIGFILE="/etc/odoo/odoo9-server.conf
# Specify the user name (Default: odoo).
USER=odoo9
# pidfile PIDFILE=/var/run/${NAME}.pid
# Additional options that are passed to the Daemon.
DAEMON_OPTS="-c $CONFIGFILE"
[ -x $DAEMON ] || exit 0
[ -f $CONFIGFILE ] || exit 0 checkpid() {
[ -f $PIDFILE ] || return 1 pid=`cat $PIDFILE`
[ -d /proc/$pid ] && return 0 return 1
}
case "${1}" in start)
echo -n "Starting ${DESC}: "
start-stop-daemon --start --quiet --pidfile ${PIDFILE} --chuid ${USER} --background --make-pidfile --startas /bin/bash -- -c "${VIRTENV} ${DAEMON} ${DAEMON_OPTS}"
echo "${NAME}."
;;
 stop)
echo -n "Stopping ${DESC}: "
start-stop-daemon --stop --quiet --pidfile $PIDFILE --oknodo echo "${NAME}."
;;
 restart|force-reload)
echo -n "Restarting ${DESC}: "
start-stop-daemon --stop --quiet --pidfile $PIDFILE --oknodo sleep 1 start-stop-daemon --start --quiet --pidfile ${PIDFILE} --chuid ${USER} --background --make-pidfile --startas /bin/bash -- -c "${VIRTENV} ${DAEMON} ${DAEMON_OPTS}"
echo "${NAME}."
;; *)
N=/etc/init.d/$NAME echo "Usage: $NAME {start|stop|restart|force-reload}" >&2 exit 1
;;
esac
exit 0

Odoo11 we call with:

etc/init.d/odoo11-server

#!/bin/sh
### BEGIN INIT INFO
# Provides: odoo11-server
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Should-Start: $network
# Should-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Name: Odoo start/stop script for Ubuntu
# Description: Using this script, we can start/stop/restart
# or check status of odoo server.
### END INIT INFO
PATH=/bin:/sbin:/usr/bin
VIRTENV=/home/odoo11/odoo-11.0
NAME=odoo11
DESC=ODOO11-SERVER
# Specify the daemon path for Odoo server.
DAEMON=/home/odoo11/o-src/server/odoo-bin
# Specify the Odoo Configuration file path.
CONFIGFILE="/etc/odoo/odoo11-server.conf"
# Specify the user name (Default: odoo).
USER=odoo11
# pidfile PIDFILE=/var/run/$NAME.pid # pidfile
# Additional options that are passed to the Daemon.
DAEMON_ARGS="-c $CONFIGFILE"
display() {
 RED=$(tput setaf 1)
 GREEN=$(tput setaf 2)
 NORMAL=$(tput sgr0)
 col=$(tput cols)
case "$#" in
  1)
   if [ $1 -eq 0 ] ; then
    printf '%s%*s%s' "$GREEN" $col "[ OK ] " "$NORMAL"
   else
    printf '%s%*s%s' "$RED" $col "[FAIL] " "$NORMAL"
   fi
   ;;
  2)
   if [ $1 -eq 0 ] ; then
    echo "$GREEN* $2$NORMAL"
   else
    echo "$RED* $2$NORMAL"
   fi
   ;;
  *)
   echo "Invalid arguments"
            exit 1
            ;;
esac
}
if ! [ -x $DAEMON ] ; then
 echo "Error in ODOO Daemon file: $DAEMON"
 echo "Possible error(s):"
 display 1 "Daemon File doesn't exists."
 display 1 "Daemon File is not set to executable."
 exit 0;
fi if ! [ -r $CONFIGFILE ] ; then
 echo "Error in ODOO Config file: $CONFIGFILE"
 echo "Possible error(s):"
 display 1 "Config File doesn't exists."
 display 1 "Config File is not set to readable."
 exit 0;
fi if ! [ -w $PIDFILE ] ; then
 touch $PIDFILE || echo "Permission issue: $PIDFILE" && exit 1
 chown $USER: $PIDFILE fi
# Function that starts the daemon/service do_start() {
 echo $1
 check_status
 procs=$?
 if [ $procs -eq 0 ] ; then
    start-stop-daemon --start --quiet --pidfile ${PIDFILE} \
               --chuid ${USER} --background --make-pidfile \
               --exec ${DAEMON} -- ${DAEMON_ARGS}
   return $?
 else
  detailed_info "${DESC} is already Running !!!" $procs
  exit 1
 fi
}
# Function that stops the daemon/service do_stop() {
 echo $1
 check_status
 if [ $? -ne 0 ] ; then
    start-stop-daemon --stop --quiet --pidfile ${PIDFILE}
   return $?
 else
  display 0 "${DESC} is already Stopped. You may try: $0 force-restart"
  exit 1
 fi
}
get_pids(){
 pids=$(ps -Ao pid,cmd | grep $DAEMON | grep -v grep | awk '{print $1}')
 return $pids
}
# Function that checks the status of daemon/service check_status() {
 echo $1
 # start-stop-daemon --status --pidfile ${PIDFILE}
 status=$(ps -Ao pid,cmd | grep $DAEMON | grep -v grep | awk '{print $1}' | wc -l)
    return $status
}
# Function that forcely-stops all running daemon/service force_stop() {
 echo $1
 pids=$(ps -Ao pid,cmd | grep $DAEMON | grep -v grep | awk '{print $1}')
 if [ ! -z "$pids" ] ; then
  kill -9 $pids
 fi
 return $?
}
detailed_info() {
 procs=$2
 if [ $procs -eq 1 ] ; then
  display 0 "$1"
  echo "FINE, ${procs} ${DESC} is Running."
  echo "Details :"
  pid=`cat $PIDFILE`
  echo "Start Time : $(ps -p $pid -wo lstart=)"
  echo "Total UpTime: $(ps -p $pid -wo etime=)"
  echo "Process ID : ${pid}"
  echo ""
 else
  display 1 "WARNING !!!"
  display 1 "${procs} ${DESC}s are Running !!!"
  pids=$(ps -Ao pid,cmd | grep $DAEMON | grep -v grep | awk '{print $1}')
  echo "Details :"
  echo -n "Process IDs : "
  echo $pids
  # echo $pids | tr ' ' ,
  echo "In order to fix, Hit command: $0 force-restart"
  echo ""
 fi
}
case "$1" in
    start)
    do_start "Starting ${DESC} "
    display $?
    ;;
  stop)
    do_stop "Stopping ${DESC} "
    display $?
    ;;
  status)
    check_status "Current Status of ${DESC}:"
    procs=$?
    if [ $procs -eq 1 ] ; then
     detailed_info "RUNNING" $procs
    elif [ $procs -eq 0 ] ; then
     display 1 "STOPPED"
    else
     detailed_info "" $procs
    fi
    ;;
  restart|reload)
    do_stop "Stopping ${DESC} "
    display $?
    sleep 1
    do_start "Starting ${DESC} "
    display $?
    ;;
  force-restart)
    force_stop "Forcely Restarting ${DESC} "
    sleep 1
    do_start "Starting ${DESC} "
    display $?
    ;;
  force-stop)
    force_stop "Forcely Stopping all running ${DESC} "
    display $?
    ;;
  cs)
    ps -Ao pid,cmd | grep $DAEMON | grep -v grep | awk '{print $1}' | wc -l
    ;;
  *)
    display 1 "Usage: $0 {start|stop|restart/reload|status|force-restart|force-stop}"
    exit 1
    ;;
esac
exit 0 

The configuration files for both versions are more or less the same besides their specific paths for i.e. Odoo 9 (odoo9 - 9700) and Odoo 10 (odoo10 - 9800) and Odoo 11 (odoo11 - 9900) accordingly (each on its own ports)

[options]
# Addons Path addons_path=/home/odoo9/o-src/server/addons
# This is the password that allows database operations:
admin_passwd = OURPASSWORD
auto_reload = False
csv_internal_sep = ,
# Data Directory data_dir=/home/odoo9/o-data/.local/share/Odoo
#dbfilter = .* ;will show database selector if there are more than one database i.e. #dbfilter=odoo9.tld
#dbfilter = ^%d$ ;select database automatically by first subdomain (www is ignored). E.g. http://my.portal.example.com and http://www.my.portal.example.com will show database "my"
dbfilter = ^%h$ ;select database automatically by domain. E.g. http://portal.example.com will show "portal.example.com" database
# Database configuration
db_host = False
db_maxconn = 64
db_name = False
db_password = False
db_port = False
db_template = template1
db_user = odoo9
debug_mode = False demo = {}
email_from = False
#import_partial = /opt/odoo/.local/share/User/import/odoo.import.temp ;needed for long-running data imports import_partial = /home/odoo9/o-data/.local/share/User/import/odoo.import.temp
# Workers and timeouts workers = 3 limit_memory_hard = 25000000000 limit_memory_soft = 24000000000 limit_request = 8192 limit_time_cpu = 10800 limit_time_real = 14400 list_db = True
# uncomment below to activate debug logs - deactivate and set to warning later log_db_level = warning log_handler = ['["[\':DEBUG\']"]']
log_level = debug
# should be set in run command (i.e. via --logfile)
logfile = /var/log/odoo/odoo9-server.log
logrotate = True
# Ports and more login_message = False longpolling_port = 9701 max_cron_threads = 3 netrpc = False netrpc_interface =
netrpc_port = 9703
osv_memory_age_limit = 12.0
osv_memory_count_limit = False
pg_path = None
pidfile = False
# Is it behind a HTTP reverse proxy?
proxy_mode = False
reportgz = False
#secure_cert_file = /etc/nginx/XXXX.crt
#secure_pkey_file = /etc/nginx/XXXX.key
server_wide_modules = None
smtp_password = GiveMeYourPassBaby ;False
smtp_port = 465 ;25
smtp_server = stmp.example.com ;localhost
smtp_ssl = True ;False
smtp_user = mail@example.com ;False
static_http_document_root = None
static_http_enable = False
static_http_url_prefix = None
syslog = False
test_commit = False
test_enable = False
test_file = False
test_report_directory = False
timezone = False translate_modules = ['all']
unaccent = False without_demo = False
xmlrpc = True xmlrpc_interface =
xmlrpc_port = 9700
xmlrpcs = True xmlrpcs_interface =
xmlrpcs_port = 9702

All ODOO versions use each an Apache Proxy

<VirtualHost *:80>
 SuexecUserGroup "#1002" "#1002"
 ServerAdmin webmaster@odoo9.tld
 ServerName odoo9.tld
 ServerAlias www.odoo9.tld
 DocumentRoot /home/odoo9/domains/odoo9.tld/public_html
 ErrorLog /var/log/virtualmin/odoo9.tld_error_log
 LogLevel warn
 CustomLog /var/log/virtualmin/odoo9.tld_access_log combined
 ScriptAlias /cgi-bin/ /home/odoo9/domains/odoo9.tld/cgi-bin/
 DirectoryIndex index.html index.htm index.php index.php4 index.php5 index.php7
 <Directory /home/odoo9/domains/odoo9.tld/public_html>
  Options -Indexes +IncludesNOEXEC +SymLinksIfOwnerMatch +ExecCGI
  order allow,deny
  allow from all
  AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
  Require all granted AddType application/x-httpd-php .php AddHandler fcgid-script .php7 AddHandler fcgid-script .php AddHandler fcgid-script .php7.0 FCGIWrapper /home/odoo9/domains/odoo9.tld/fcgi-bin/php7.0.fcgi .php7 FCGIWrapper /home/odoo9/domains/odoo9.tld/fcgi-bin/php7.0.fcgi .php FCGIWrapper /home/odoo9/domains/odoo9.tld/fcgi-bin/php7.0.fcgi .php7.0
 </Directory>
 <Directory /home/odoo9/domains/odoo9.tld/cgi-bin>
  allow from all
  AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
  Require all granted
 </Directory>
 <IfModule mod_rewrite.c>
  RewriteEngine On
  # Permanent redirect (301 HTTP) if no canonical domain name
  RewriteCond %{HTTP_HOST} !^odoo9.tld
  RewriteRule ^/(.*)$ http://odoo9.tld/$1 [R=301,NE,L]
  # Redirect 301 to HTTPS
  RewriteCond %{HTTPS} !=on
  RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,NE,L]
 </IfModule>
RemoveHandler .php7 RemoveHandler .php RemoveHandler .php7.0 FcgidMaxRequestLen 1073741824
 <Location "/" >
  Order deny,allow
  Deny from all
  Allow from all
 </Location>
IPCCommTimeout 241
</VirtualHost>
<VirtualHost 123.123.123.123:443>
 SuexecUserGroup "#1002" "#1002"
 ServerAdmin webmaster@odoo9.tld
 ServerName odoo9.tld
 ServerAlias www.odoo9.tld
 DocumentRoot /home/odoo9/domains/odoo9.tld/public_html
 ErrorLog /var/log/virtualmin/odoo9.tld_error_log
 LogLevel warn
 CustomLog /var/log/virtualmin/odoo9.tld_access_log combined
 ScriptAlias /cgi-bin/ /home/odoo9/domains/odoo9.tld/cgi-bin/
 DirectoryIndex index.html index.htm index.php index.php4 index.php5 index.php7
 <Directory /home/odoo9/domains/odoo9.tld/public_html>
  Options -Indexes +IncludesNOEXEC +SymLinksIfOwnerMatch +ExecCGI
  allow from all
  AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
  Require all granted AddType application/x-httpd-php .php AddHandler fcgid-script .php7 AddHandler fcgid-script .php AddHandler fcgid-script .php7.0 FCGIWrapper /home/odoo9/domains/odoo9.tld/fcgi-bin/php7.0.fcgi .php7 FCGIWrapper /home/odoo9/domains/odoo9.tld/fcgi-bin/php7.0.fcgi .php FCGIWrapper /home/odoo9/domains/odoo9.tld/fcgi-bin/php7.0.fcgi .php7.0
 </Directory>
 <Directory /home/odoo9/domains/odoo9.tld/cgi-bin>
  allow from all
  AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
  Require all granted
 </Directory>
 SSLEngine on
 SSLProtocol all -SSLv2 -SSLv3
 SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM SSLCertificateFile /home/odoo9/domains/odoo9.tld/etc/ssl/odoo9_tld.crt SSLCertificateKeyFile /home/odoo9/domains/odoo9.tld/ssl.key
 RequestHeader set X-Forwarded-Proto "https"
 <IfModule mod_rewrite.c>
  RewriteEngine On
  # Permanent redirect (301 HTTP) if no canonical domain name
  RewriteCond %{HTTP_HOST} !^odoo9.tld
  RewriteRule ^/(.*)$ https://odoo9.tld/$1 [R=301,NE,L]
  #RewriteRule ^/(.*)$ http://odoo9.tld/$1 [R=301,NE,L]
 </IfModule>
RemoveHandler .php7 RemoveHandler .php RemoveHandler .php7.0 FcgidMaxRequestLen 1073741824
 <Location "/" >
  Order deny,allow
  Deny from all
  Allow from all
 </Location>
 <Location "/web/database" >
  Order deny,allow
  Deny from all
  Allow from 123.123.123.123 192.168.1.0/24 127.0.0.0/255.0.0.0 ::1/128
 </Location>
 <Location "/website/info" >
  Order deny,allow
  Deny from all
  Allow from 123.123.123.123 192.168.1.0/24 127.0.0.0/255.0.0.0 ::1/128
 </Location>
SSLCACertificateFile /home/odoo9/domains/odoo9.tld/ssl.ca
 # Comment to disable proxy
 ProxyRequests Off
 ProxyPreserveHost On
 ProxyPass /.well-known !
 ProxyPass /longpolling/ http://localhost:9701/longpolling/ retry=0
 ProxyPassReverse /longpolling/ http://localhost:9701/longpolling/ retry=0
 ProxyPass / http://localhost:9700/ retry=0
 ProxyPassReverse / http://localhost:9700/ retry=0 IPCCommTimeout 241
</VirtualHost>

The Odoo 10 and 11 Proxies are accordingly with their paths, domains, and ports.

When we start the Odoo servers they don't start - Postgres 9.6 is running.

# /etc/init.d/odoo9-server start 
Starting odoo9-server: odoo9-server

The var/log/odoo/odoo9.log file is empty and accordingly both other log files for ODOO 10 and 11.

We would appreciate learning more about what might be wrong in our setups and how to get Odoo 11 and Odoo 9, 10 running on the same server in virtual environments.

Kind regards OTech

1
Avatar
Discard
Avatar
Fatih Piristine
Best Answer

you are half-way there. include "virtualenv -p /usr/bin/python3 /path/to/venv" in your v11 daemon file. and before executing start-stop-daemon put there -  eval " source /path/to/venv/bin/activate" - or write a script that check if venv ready if not creates it and install requirements for you.

with this. you might sometime face problems due to python updates, which would require remove the venv folder and recreating it will solve the problem.

here is a hint.

fnc_daemon_env() {    
log_action_msg "$title" "preparing environment"
# create environment if missing
if [ -z $daemon_env ]; then
eval "virtualenv -p /usr/bin/$daemon_bin $daemon_env_dir"
fi
# activate environment
eval "source $daemon_env_run"
# ensure requirements
eval "pip install -r $workspace/etc/requirements.txt"
log_action_msg "$title" "environment ready."}



0
Avatar
Discard
Avatar
Samo Arko
Best Answer

Do you have separate users for every odoo installation? I add the location of python from correct venv in the run script. In odoo 10 I change in odoo-bin: #!/usr/bin/env python to #!/usr/bin/env /opt/odoo/venv10/bin/python (location of my python in the virtenv). 

0
Avatar
Discard
Fatih Piristine

not really but it is optional up to you.

Avatar
Piotr Cierkosz
Best Answer

I run Odoo 9, 10 and 11 on one server.

1) If all your Odoo instances are accessible on their ports, for example:

- localhost:8069 (odoo9)

-localhost:8070 (odoo11)

Then simply set up nginx or apache to redirect appropriate domains to appropriate ports (simple tutorial: http://cier.tech/blog/blog-1/post/configuring-apache-for-odoo-4 )

2) If you can't run one or more of your instances (installation issue) use others knowledge and scripts (the best one is from Yenthe Van Ginneken). Simply download script, edit the script file (change the port, instance name etc.) and run it. If you want to run three instances edit and run script three times. Simple tutorial on that: http://cier.tech/blog/blog-1/post/how-to-install-odoo-on-linux-16-04-3 

When you get the instances up and running go to point 1) to configure nginx/apache. Hint if you want to point domains to virtual server permanent IP is needed, for example, "Elastic IP" when using AWS.

 

0
Avatar
Discard
Avatar
Dominique Chabord
Best Answer

Couldn't review all this but seached for $VIRTENV and 3.5 in V11 script and couldn't find it.
Have you validated this script first ?

You must set a python3.5 virtaulenv, which requires you install python3.5 on your server. Then, check why you don't use the $VIRTENV variable in the script.

hope this helps


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

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

Sign up
Related Posts Replies Views Activity
Can't select PostgreSql when installing odoo Solved
installation odoo
Avatar
Avatar
Avatar
2
Jul 25
36278
"no module named PyPDF2" error
installation odoo
Avatar
Avatar
1
Apr 22
9462
Can´t connect to web page
installation odoo
Avatar
0
Jun 21
5215
Latest odoo install on macOS Catalina
installation odoo
Avatar
0
Feb 20
4311
how to install odoo_11.0.latest.tar.xz on Ubuntu
installation odoo
Avatar
Avatar
Avatar
2
Feb 18
5879
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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