I would like to share with you, how to Install Odoo(formerly OpenERP) from github on Ubuntu system.
Odoo Github
1. First we need to install git in our Ubuntu system, for that open our terminal or or hit Ctrl+Alt+t
a) First we need to update apt source list
sudo apt-get update
b) Upgrade apt source package
sudo apt-get upgrade
c) Now install git
sudo apt-get install git
2. Install Python packages which required for Odoo installation
sudo apt-get install graphviz ghostscript postgresql-client \
python-dateutil python-feedparser python-matplotlib \
python-ldap python-libxslt1 python-lxml python-mako \
python-openid python-psycopg2 python-pybabel python-pychart \
python-pydot python-pyparsing python-reportlab python-simplejson \
python-tz python-vatnumber python-vobject python-webdav \
python-werkzeug python-xlwt python-yaml python-imaging
sudo apt-get install gcc python-dev mc bzr python-setuptools python-babel \
python-feedparser python-reportlab-accel python-zsi python-openssl \
python-egenix-mxdatetime python-jinja2 python-unittest2 python-mock \
python-docutils lptools make python-psutil python-paramiko poppler-utils \
python-pdftools antiword postgresql
3. Install PostgreSQL database
sudo apt-get install postgresql
4. Install Pgadmin
sudo apt-get install pgadmin
5. Create User into Postgres Database Odoo
sudo -u postgres createuser -s odoo
6. Download Odoo from Github to your system
a) make directory in home
sudo mkdir home/openerp-v8
b) move to directory
cd home/openerp-v8
c) Download odoo from Github
sudo git clone https://github.com/odoo/odoo.git
7. Once finish a download need to run odoo server
a) Go to oddo path
cd home/openerp-v8/odoo
b) Run a odoo server
./openerp-server
8. To check Odoo installation is perfectly work on your system so for that just open browser type http://localhost:8069
9. Odoo login screen. Currently it will show below screen because first time we don't have database.
Odoo Database Manager |
I hope you like this article. Share your views to improve content. Happy Learning !!!
thanks!!
ReplyDeleteThanks... Very Helpful
ReplyDelete