Project

General

Profile

Support #607

Updated by Daniel Curtis about 9 years ago

This is a guide for install OpenERP 8, Odoo, on FreeBSD 9. 

 h2. Setting up the Environment 

 * Start by making sure everything is up to date: 
 <pre> 
 pkg update && pkg upgrade 
 portsnap fetch extract 
 </pre> 

 * Install portmaster: 
 <pre> 
 cd /usr/ports/ports-mgmt/portmaster 
 make install clean 
 pkg2ng 
 </pre> 

 * Install a few dependencies: 
 <pre> 
 portmaster graphics/py-imaging textproc/py-libxml2 devel/py-pytz lang/py-mx-base databases/py-psycopg2 graphics/py-chart graphics/py-pydot textproc/py-libxslt devel/py-lxml textproc/py-xml devel/py-yaml textproc/py-mako devel/py-dateutil print/py-reportlab2 
 </pre> 

 h2. Install Odoo 

 * Download the latest version of Odoo: 
 <pre> 
 fetch 'https://nightly.odoo.com/8.0/nightly/src/odoo_8.0.latest.tar.gz' 
 tar xzf odoo_8.0-latest.tar.gz 
 cd openerp-8.0 
 </pre> 

 * Install using the setup script: 
 <pre> 
 python setup.py install 
 </pre> 



 h2. Resources 

 * http://zewaren.net/site/?q=node/127

Back