Install Python modules for OpenERP 6.1 on Windows

I installed OpenERP 6.1 on windows using the AllInOne package. I did NOT install Python separately. Obviously, the OpenERP folders already contain the required python executables.

Now, when I try to install certain add-ons, I usually come across requirements to install some python modules. For instance. to install Jasper_Server I need to install http2, pypdf and python-dime.

Since there is no separate Python installation, there is no C: \ Python or anything like that. Where and how to install these python packages so that I can install the addon?

thanks

+6
source share
2 answers

Please check this link may be useful for you. http://www.zbeanztech.com/blog/openerp-source-eclipse-under-windows

if you install the python package separately, then you need to add the bin path of the installed package to the system environment variable.

+2
source

Good question..

Openerp on Windows uses the dll for python (python26.dll in the / Server / server openerp folder in the program files). It seems that all additional libraries are in the same folder, so you can load additional libraries in this folder and restart the service. (I usually stop the service and start it manually from the command line - it is easier to see if there are any errors, etc. During debugging)

Let us know if you earn it!

+1
source

All Articles