Hi@akhtar,
It seems your python script is not able to find python in your system. You may have python3 installed in your system. But it is finding /usr/bin/python folder. So you can create a symlink to it.
$ sudo ln -s /usr/bin/python3 /usr/bin/python
Hope this helps!!
If you need to know more about Python, join Python certification course today.
Thanks!