Skip to Content
Menu
This question has been flagged
1 Reply
12859 Views

Hello,


I am trying to install a module on Odoo.sh but am getting an error:

Python library not installed: mollie-api-python


I installed the library using 'pip install mollie-api-python.'

Then I update the list of modules and still get the error.


When I run 'pip list' I can see that the library is installed, yet the system does not recognize the library.


Does anyone know what could go wrong here?

Avatar
Discard
Best Answer

Hello,

maybe you need to run pip3 instead of pip: pip3 install mollie-api-python

If you are using mollie repository, you can check the requirements.txt and just run:

pip3 install -r requirements.txt

Avatar
Discard
Author

Hello,

Thanks for your reply.

I have tried both pip an pip3.

I also have installed requirements.txt but that did not solve the problem.

Author

Hello,

Update:

I uninstalled the library with pip and then installed it again with pip3 what solved the problem.

Thank you!