Skip to Content
Menu
This question has been flagged
3 Replies
16901 Views

Help me to configure Pycharm for debug Odoo10 on Windows


Avatar
Discard
Author Best Answer

In this post will teach you how to debug odoo 10 with Pycharm.

For me i use Windows 10-64. i think that it will work for all windows if make a difference with version 32bits & 64 bits (amd_64).

1 - download odoo 10 source code and dezip at C:\

      https://nightly.odoo.com/10.0/nightly/src/odoo_10.0rc1c.latest.zip

2 - download and install Pycharm

3 - Download Python 2.7

    https://www.python.org/downloads/windows/

4 - Install it and in installation add this option " Add Python.exe to Path - will be installed on local hard drive"

5 - Download and install PostGreSQL create Login Role : odoo --- Username : odoo ---- Password : odoo

    http://www.enterprisedb.com/products-services-training/pgdownload

6 - We must set now requierments.txt all programmes odoo need for work

     6.1 - Download and install http://www.stickpeople.com/projects/python/win-psycopg/

     6.2 - Go to your odoo source file and edit file requierements.txt

             6.2.1 - remove with version psycopg2 as your already have it.

             6.2.2 - remove with version the optional python-ldap, gevent, psutil.

             6.2.3 - Add pypiwin32. And save file requierements.txt.

     6.3 - Using followin command from a cmd.exe prompt replace \yourodoo by actual path where you unzip Odoo10 source code.

     C:\> cd \yourOdoo

     C:\yourodoo> C:\Python27\Scripts\pip.exe install -r requirements.txt

     6.4 - Download and install NodeJs and reboot computer.

              http://nodejs.org/download/

     6.5 - Install less with cmd.exe

              C:\> npm install -g less

Now Odoo10 is ready to be run in Odoo 10 we must run odoo-bin.

7 - run Pycharm Open Project select your Odoo Source Code Directory

8 - in Pycharm go Run - Edit Configuration. click on + choose Python

9 - Fill Configuration like this.

         - Name : Odoo

         - Check "Single instance only"

         - Script : go to your odoo source code and choose file odoo-bin

         - Script parameters : -w username -r password --addons-path=addons

            (for me -w odoo -r odoo --addons-path=addons) because when i am created a role on postgreSQL my username = odoo and password = odoo.

10 - Press Ok and Run - Odoo

11 - open your browser and tip : localhost:8069 odoo will start and you can debug it now with Pycharm.

Thanks.

Avatar
Discard

When i go to this link,there is an 404 error, is there any other option? :/

https://nightly.odoo.com/10.0/nightly/src/odoo_10.0rc1c.latest.zip

Best Answer

Thanks too much for you great Answer,

I Follow Steps and Odoo run successfully in pycharm,

but when i goto browser the following Error Come to me 


Internal Server Error

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.

 I am using Windows 7, Odoo 10

Any Help

Avatar
Discard