在Windows下调试Odoo

半世苍凉 提交于 2019-12-02 22:30:38

依赖处理<A NAME="dependent"> </A>

  1. 安装postgresql (http://www.postgresql.org/download/windows/)

  2. 安装PG的Python驱动,psycopg2-2.6.0.win-amd64-py2.7-pg9.4.1-release (https://pypi.python.org/pypi/psycopg2/2.6)

  3. 安装python的VC编译器,VCForPython27 (http://www.microsoft.com/en-us/download/details.aspx?id=44266)

  4. 安装windows系统API的访问库,pywin32-219.win-amd64-py2.7 (http://sourceforge.net/projects/pywin32/files/pywin32/Build%20219/)

  5. 下载并安装目录访问库, python_ldap‑2.4.19‑cp27‑none‑win_amd64.whl (http://www.lfd.uci.edu/~gohlke/pythonlibs/)

  6. 下载并安装PDF处理库,reportlab-3.1.44-cp27-none-amd64.whl (http://www.lfd.uci.edu/~gohlke/pythonlibs/)

  7. git clone -b 8.0 https://github.com/odoo/odoo.git

  8. 修改requirements.txt:

      psycopg2==2.5.3 >> psycopg2==2.6.0
      python-ldap==2.4.15 >> python-ldap==2.4.19
      Delete gevent==1.0.1
      reportlab==3.1.8 >> reportlab==3.1.44
    
  9. pip install -r requirements.txt

  10. pip uninstall gevent

Odoo配置<A NAME="config"> </A>

In Odoo project root, copy debian/openerp-server.conf to another folder. In my case, it is D:\Dev\odooTest\openerp-server.conf , edit the file to have the following configurations:

[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = localhost
db_port = 5432
db_user = odoo
db_password = odoo
addons_path = D:\Dev\PyCharmProjects\odoo\addons

IDEA运行配置<A NAME="run"> </A>

Run --> Edit Configurations, click "+" on the top left to create a new configuration with the following settings: Name: Odoo8 Single instance checkbox: checked Script: <odoo源码目录>\odoo.py Script parameters: --config=D:\Dev\odooTest\openerp-server.conf

Enjoy!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!