This question has been flagged
1 Reply
2983 Views

Unable to install module "account_banking_pain_base" because an external dependency is not met: No module named unidecode

Avatar
Discard
Best Answer

Hi,

The module you are trying to install is having an external dependency, ie, the module "account_banking_pain_base"  needs the external package "unidecode" for its working.

As this dependency is not met you are getting this, so install the package unidecode and try to install the module.


You can install the package like this,

sudo apt-get update
sudo apt-get install python-unidecode


Thanks

Avatar
Discard

Have a look at the updated answer

Author

Perfect, thank you very much!