Skip to Content
Menu
This question has been flagged
2 Replies
12856 Views

Hello, I have a question about Odoo 10. I am trying to install a module that needs some python packages and libs but I always get an error that says; module not found there are external dependencies. Knowing that I installed the required libs using pip. So, I don't know how to link between python and Odoo, In other words : use the Python installation in Odoo 10 knowing that I am using windows and a Saas version of Odoo ( it works well with the source version, but I want to install my module in a Saas version of Odoo ). If you have any idea. Please help!

Avatar
Discard
Best Answer

Hi,

There are so many modules which contains external dependencies, you cannot go in each modules' __manifest__.py file and check for the external dependencies. As such when you try to install that particular module, it will ask that there is no external dependencies installed, you can just install it from putty or Prompt (Whatever interface you are using) and also it should be same interface where your python is installed, I mean the same environment (No need to have same path of dist_packages.) You can install from this command:

pip install <external_dependency_package_name>

Also if there is some special external libraries, it should installed different way, you can google it for that or use the readme.txt file from that particular module.

(Other python packages for odoo can be installed from odoo / requirement.txt file. for that command is :

pip install -r requirements.txt  ;; it is also there in odoo installation guide, in case if you need it.)

Thanks, 

Avatar
Discard
Related Posts Replies Views Activity
2
Nov 24
25101
2
May 24
5524
3
Mar 24
4967
0
Mar 24
264
3
Feb 24
11421