When I am trying to run Robot tests through command prompt getting No Module found error

Hi Radhakrishna,

I’m not familiar with this module as i’ve never used it, but i’ll give some general guidance.

Usually a “No Module found error” is caused by:

  • module not installed
  • module not installed for this version of python
  • missing from path (Installation error?)

I notice that robot is running with python 3.7 on your machine, do you have any other versions of python installed? if so when installing the modules you might need to use pip3 instead of pip or check your path to ensure python37 paths are before any other pythonNN paths.

Hope that helps,

Dave.