I am trying to run a bash file from matlab that exectes a python file. If I simply run the bash from the terminal using:
source test_bash.sh
It runs fine. However, when I run from matlab:
system('source test_bash.sh')
I get the following error:
ImportError: No module named unidecode
I don't understand the difference between running the same bash file from the terminal and from Matlab (using system()).