Book Image

Working with Odoo 10 - Second Edition

Book Image

Working with Odoo 10 - Second Edition

Overview of this book

Para 1: Take full advantage of the benefits of the Odoo module ecosystem whilst learning how to modernise your business with Working with Odoo 10. Covering everything from Odoo development essentials through to CRM and analytic accounting, this guide is a must-have for Odoo beginners. Para 2: A powerful set of open source enterprise management applications, Odoo 10 gives you access to a website builder, integrated e-commerce features, and a fast-growing community to allow you to transform your business. Para 3: With this Odoo book you?ll learn how to set up Odoo online, configure basic company settings, and then explore CRM in Odoo. You?ll cover all the Odoo development essentials and much more, including purchasing application, ERP systems, analytic accounting, and other recent Odoo features. Para 4: What?s Inside ? Understand Odoo installation & the basics of implementing Odoo in your business ? Explore accounting & finance setup and modules to help business efficiency ? Build a website with Odoo ? Customise and configure Odoo to an advanced level
Table of Contents (25 chapters)
Working with Odoo 10 Second Edition
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Installing Odoo on Ubuntu


This book will walk you through the installation procedure for Odoo on Ubuntu using the latest all-in-one nightly package. Depending on your Ubuntu installation and how you want to work with Odoo, there are alternative installation methods.

At the time of writing, Odoo is most commonly installed on Ubuntu version 16.04.

Modifying the sources.list file

Installing Odoo in Ubuntu is easy when you use the Debian repository. In order to perform these operations you may have to be the root user. If you have an account that has the permissions to do so you can temporarily change to the root user by entering sudo -s.

For better security and to guarantee you are installing the correct package, Odoo now signs their distributions. The following command adds the correct key to your Ubuntu installation so that it will recognize the Odoo package:

wget -O - https://nightly.odoo.com/odoo.key | apt-key add -

Next we want to add the distribution to the /etc/apt/sources.list file with the following command line: echo "deb http://nightly.odoo.com/10.0/nightly/deb/ ./" >> /etc/apt/sources.list.d/odoo.list. This installs the package.

You can start the installation process by entering these commands into a terminal window:

sudo apt-get update
sudo apt-get install odoo
 

The Odoo packages will be first downloaded and then installed. This is an all-in-one installation and should set up all the necessary packages, PostgreSQL, and library dependencies required to run Odoo.

By default the deb installation will place the source in the following directory:

/usr/lib/python2.7/dist-packages/odoo

Testing your Odoo installation

Point your browser to http://localhost:8069 and you should see the Odoo database creation page appear.