installing woocommerce connector in odoo

六月ゝ 毕业季﹏ 提交于 2019-12-04 10:09:16

It seems like you do not have installed woocommerce REST api on your system.

install woocommerce using your terminal. here is the command

sudo pip install woocommerce

EDIT:

Open python prompt in terminal

$ python
Python 2.7.3 (default, Mar 13 2014, 11:03:55) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from woocommerce import API
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named woocommerce

If it says No module named woocommerce means you have some installation issue with woocommerce.

I was facing same problem while installing woocommerce connector in odoo. After that i have installed woocommerce module by

pip install woocommerce. I was working on windows platform.

I was getting same problem after successfully installing woocommerce python module.

Here Problem is odoo is not finding woocommerce in it's addon folder.

So solution is here :

  • open folder "C:\Python27\Lib\site-packages".

  • This is the path where python modules are installed. From this folder find the folder 'woocommerce'.

  • copy this folder and put this in odoo server path which is
  • "D:\Odoo 8.0-20160107\server" .
  • Now restart odoo

Hope this will help you.

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