跳至内容
菜单
此问题已终结
2 回复
6935 查看

Hello Team,

How to install odoo 8 in windows 7 with git configration and how to pull the latest Bug Fixes in windows 7 and Ubuntu 12.04, Can any one help me to do that.

Thanks in Advance

形象
丢弃
最佳答案

Go to https://www.odoo.com/page/download

& Fill the form then download and Install , Setup includes all stuff Python,PostGRES means everything included in package. Simple Download and Run the exe file and follow the simple steps.

形象
丢弃
编写者

Thanks Usman, then how to pull the latest Bug Fixes to my local server using git in windows

最佳答案

You can donwload directly the latest installer for Windows at odoo_8.0-latest.exe any time & install/reinstall it. This link always points to latest version at nightly repository of openerp, practically it's updated almost every day.

UPDATE:
in Debian/Ubuntu you can install/update using apt-get as it explained at: http://nightly.odoo.com/

in Ubuntu you've to run commands:

- for installation

1) sudo echo 'deb http://nightly.odoo.com/8.0/nightly/deb/ ./ '  > /etc/apt/sources.list.d/odoo8.list

2) sudo apt-get update

3) sudo apt-get install odoo

- for update:

1) sudo apt-get update

2) sudo apt-get upgrade

- for start/stop/restart/status:

 sudo service odoo <here start or stop or restart or status >

 

形象
丢弃

be aware, sometimes updates may break down your server, because of conflicting code in the update or bugs (in such a case openerp team usually corrects it in couple of days), so it's better to test in separated environment whether update is ok or not, if you're about updating production server.

编写者

Thanks Temur