Odoo ERP Windows дээр соорсоос суулгах

Дусал нэвтэрхий толь-с
12:46, 22 Нэгдүгээр сар 2016-ий байдлаарх Almas (Яриа | оруулсан хувь нэмэр) хэрэглэгчийн хийсэн залруулга

(Туршиж үзээгүй) How to run odoo(openerp8) in IDE from source on windows

1. install python 2.7 (per openerp8's official doc, python 27 is required.) 2. download get-pip.py from https://bootstrap.pypa.io/get-pip.py, execute the command: python get-pip.py 3. get source of openerp8 from https://github.com/odoo/odoo.git 4. execute the command: pip install -r D:\source_code\odoo\openerp8/requirements.txt . (requirements.txt contains all dependencies. )

   The pip will install the python module automatically. However, the real world always bring us the issues because our C++ compile environment is not setup correctly. 
   we will get the link error when pip try to install psycopg2 (driver to access postgresql db.). Go to http://www.stickpeople.com/projects/python/win-psycopg/ and choose the compiled binary file directly.
   For Python-ldap, go to http://www.lfd.uci.edu/~gohlke/pythonlibs/


5. Finally, go to http://sourceforge.net/projects/pywin32/files/pywin32 and choose correct version for python-win32service.

6. If you are family with eclipse a lot, I will recommend to use PyDev IDE to work with. 7. Create new project in PyDev and link the source folder to D:\source_code\odoo\openerp8 8. modify conf file of debian\openerp-server.conf as :

      [options]
      ; This is the password that allows database operations:
      ; admin_passwd = admin
      db_host = 127.0.0.1
      db_port = 5432
      db_user = openerp
      db_password = openerp
      addons_path = D:\source_code\odoo\openerp8\addons

9. go to PyDev and run openerp-server.py with "-c debian\openerp-server.conf".