Tried googling but couldn\'t find something that relates to my particular problem. I\'m trying to run a shell script from python but the shell script wouldn\'t run because o
its because you don't have permission to run that script. You will need to give executable permission for that script to run.
chmod a+x run.sh
Check your run.sh mode, if no executable flag, set it with command
chmod +x run.sh