Return to site

Download Openerp 6.1

broken image


  1. Download Openerp 6.1 Download
  2. Openerp Client
  3. Openerp Php
  4. Openerp 7

OpenERP Extra Addons 6.1. Contribute to tejastank/openerp-extra-6.1 development by creating an account on GitHub. 9)Extract the tarball downloaded and create a folder Openerp and move the tarball and extract it there, rename it to Openerp-6.1. 10)Switch the workspace folder to created Openerp folder and create a new Pydev project in eclipse named Openerp-6.1. New- project - Pydev - Pydev project project name - Openerp-6.1 check Use default Press F5. Official download page of Odoo for Windows, Linux, Sources,.Deb Both Community and Enterprise versions.

Hello,

I want to install OpenERP 6.1 Server and the web Client too. I am a new user in Mac OS, but first of to use mac i used linux (ubuntu) and i know to use the system's command prompt. I don't know what libraries i have to install.

Openerp

Thanks in advance.Best regards, Montse.

1 Answer

Here's my experience installing OpenERP Server v6.1 on a Mac OS X 10.8.2, I'm pretty sure most steps will be quite similar.

You'll need to have MacPorts installed firstwww.macports.org/index.php(in a simple way, it's kind of apt-get replacement for Mac, correct me if I'm wrong about this)

Unfortunately it requires Xcode (you will need to download Xcode from the Apple developer website, register for free user first). Be aware that Xcode itself is quite big, I downloaded xcode4520418508a.dmg it was 1.7GB in size.Here's a good place to continue the Xcode & Macport installation process.guide.macports.org/chunked/installing.xcode.html

Next step: PostgreSQL 9.1Download here:www.enterprisedb.com/products-services-training/pgdownload#osx

I had mine installed in:

Open 'Terminal' and type:

Next step: Create user account that OpenERP will use to connect to PostgreSQL (you can follow the same step in Linux installation guide)

Next: Install all OpenERP Python dependencies:

You may try download OpenERP 6.1 source, run and test if there are still dependencies unmet.Try to find the unmet dependencies package name and install it by running this command:

All the other steps would be quite similar to Linux.

OpenERP 6.1 development environment in Ubuntu using Eclipse.

In this blog we will go through some steps required in setting up OpenERP for customization under eclipse in Ubuntu.In my previous blog i have gone through setting up OpenERP for windows.

Version Used:

OpenERP : 6.1
Postgresql : 9.1
Eclispe : latest in ubuntu repository

Run the following commands from the terminal.

1) Installs eclipse and its dependencies.
sudo apt-get update
sudo apt-get install eclipse
2)Installs python and its libraries packages required for openerp-server
sudo apt-get install python python-psycopg2 python-reportlab python-pychart python-pydot
python-egenix-mxdatetime python-lxml python-libxslt1 python-tz python-dateutil python-vobject
python-mako python-yaml python-dev python-setuptools python-pybabel

Download Openerp 6.1 Download

3)OpenerpERP server uses postgresql database server for its working so,
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:pitti/postgresql
sudo apt-get update
sudo apt-get install postgresql-9.1 postgresql-client-9.1 postgresql-contrib-9.1

4)Create a database user for OpenERP in postgresql server, who can create databases and manipulate them.
sudo su postgres
createuser (enter 'y' when prompted for super user role)
exit

5)Openerp-server 6.1 requires Werkzeug and Python-openid packages to be installed.
wget http://pypi.python.org/packages/source/W/Werkzeug/
Werkzeug-0.8.3.tar.gz#md5=12aa03e302ce49da98703938f257347a (copy the full link)

tar -zxvf Werkzeug-0.8.3.tar.gz
cd Werkzeug-0.8.3
python setup.py install
cd ..

wget http://pypi.python.org/packages/source/p/python-openid/
python-openid-2.2.5.tar.gz#md5=393f48b162ec29c3de9e2973548ea50d (copy the full link)

tar -zxvf python-openid/python-openid-2.2.5.tar.gz
cd python-openid-2.2.5
python setup.py install
cd ..

6) Install PyDev plugin in eclipse
a)help -> Install New Software.
b)In Install dialog box, Click Add.
c)Give name ‘pydev' and type the path. i.e.
d)click ok.
e)select pydev checkbox and follow the steps by clicking finish

Openerp Client

7)Adding python in eclipse can be done by
a)window -> Preferences
b)In Preferences dialog box expand pydev from left side tree
c)click on Interpreter-Python
d)click new (python interpreter)
e)browse and select 'File System-->usr-->bin-->python' and also give name 'python2.6'
f) click ok then again ok

8)Download Openerp 6.1 source tarball from,
http://nightly.openerp.com/6.1/releases/openerp-6.1-1.tar.gz

Download openerp 6.1 download

9)Extract the tarball downloaded and create a folder Openerp and move the tarball and extract it there, rename it to Openerp-6.1

10)Switch the workspace folder to created Openerp folder and create a new Pydev project in eclipse named Openerp-6.1.
New-> project --> Pydev --> Pydev project
project name - Openerp-6.1
check Use default
Press F5 after creating the project to refresh the workspace.

11)In Eclipse package explorer, Rename openerp-server in Openerp-6.1 folder to openerp-server.py.
Right Click on, openerp-server.py --> Run as --> Python run.

Openerp

Thanks in advance.Best regards, Montse.

1 Answer

Here's my experience installing OpenERP Server v6.1 on a Mac OS X 10.8.2, I'm pretty sure most steps will be quite similar.

You'll need to have MacPorts installed firstwww.macports.org/index.php(in a simple way, it's kind of apt-get replacement for Mac, correct me if I'm wrong about this)

Unfortunately it requires Xcode (you will need to download Xcode from the Apple developer website, register for free user first). Be aware that Xcode itself is quite big, I downloaded xcode4520418508a.dmg it was 1.7GB in size.Here's a good place to continue the Xcode & Macport installation process.guide.macports.org/chunked/installing.xcode.html

Next step: PostgreSQL 9.1Download here:www.enterprisedb.com/products-services-training/pgdownload#osx

I had mine installed in:

Open 'Terminal' and type:

Next step: Create user account that OpenERP will use to connect to PostgreSQL (you can follow the same step in Linux installation guide)

Next: Install all OpenERP Python dependencies:

You may try download OpenERP 6.1 source, run and test if there are still dependencies unmet.Try to find the unmet dependencies package name and install it by running this command:

All the other steps would be quite similar to Linux.

OpenERP 6.1 development environment in Ubuntu using Eclipse.

In this blog we will go through some steps required in setting up OpenERP for customization under eclipse in Ubuntu.In my previous blog i have gone through setting up OpenERP for windows.

Version Used:

OpenERP : 6.1
Postgresql : 9.1
Eclispe : latest in ubuntu repository

Run the following commands from the terminal.

1) Installs eclipse and its dependencies.
sudo apt-get update
sudo apt-get install eclipse
2)Installs python and its libraries packages required for openerp-server
sudo apt-get install python python-psycopg2 python-reportlab python-pychart python-pydot
python-egenix-mxdatetime python-lxml python-libxslt1 python-tz python-dateutil python-vobject
python-mako python-yaml python-dev python-setuptools python-pybabel

Download Openerp 6.1 Download

3)OpenerpERP server uses postgresql database server for its working so,
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:pitti/postgresql
sudo apt-get update
sudo apt-get install postgresql-9.1 postgresql-client-9.1 postgresql-contrib-9.1

4)Create a database user for OpenERP in postgresql server, who can create databases and manipulate them.
sudo su postgres
createuser (enter 'y' when prompted for super user role)
exit

5)Openerp-server 6.1 requires Werkzeug and Python-openid packages to be installed.
wget http://pypi.python.org/packages/source/W/Werkzeug/
Werkzeug-0.8.3.tar.gz#md5=12aa03e302ce49da98703938f257347a (copy the full link)

tar -zxvf Werkzeug-0.8.3.tar.gz
cd Werkzeug-0.8.3
python setup.py install
cd ..

wget http://pypi.python.org/packages/source/p/python-openid/
python-openid-2.2.5.tar.gz#md5=393f48b162ec29c3de9e2973548ea50d (copy the full link)

tar -zxvf python-openid/python-openid-2.2.5.tar.gz
cd python-openid-2.2.5
python setup.py install
cd ..

6) Install PyDev plugin in eclipse
a)help -> Install New Software.
b)In Install dialog box, Click Add.
c)Give name ‘pydev' and type the path. i.e.
d)click ok.
e)select pydev checkbox and follow the steps by clicking finish

Openerp Client

7)Adding python in eclipse can be done by
a)window -> Preferences
b)In Preferences dialog box expand pydev from left side tree
c)click on Interpreter-Python
d)click new (python interpreter)
e)browse and select 'File System-->usr-->bin-->python' and also give name 'python2.6'
f) click ok then again ok

8)Download Openerp 6.1 source tarball from,
http://nightly.openerp.com/6.1/releases/openerp-6.1-1.tar.gz

9)Extract the tarball downloaded and create a folder Openerp and move the tarball and extract it there, rename it to Openerp-6.1

10)Switch the workspace folder to created Openerp folder and create a new Pydev project in eclipse named Openerp-6.1.
New-> project --> Pydev --> Pydev project
project name - Openerp-6.1
check Use default
Press F5 after creating the project to refresh the workspace.

11)In Eclipse package explorer, Rename openerp-server in Openerp-6.1 folder to openerp-server.py.
Right Click on, openerp-server.py --> Run as --> Python run.

Openerp Php

Openerp web can be accessed from the browser through browser http://localhost:8069.

Openerp 7

Hope this blog might be helpful.





broken image