Michael Hubbard
Michael Hubbard

Reputation: 81

Robot Framework can't find Python

I'm trying to install Robot Framework, but it keeps giving me an error message during setup that "No Python installation found in the registry." I've tried running the installer as administrator, I've made sure that Python is installed (I've tried both 2.7.2 and 2.7.9), and both C:\Python27 and C:\Python27\Scripts are added to the PATH (with and without slashes on the end, if that matters).

I have no idea why it can't find Python. What do I need to do?

Upvotes: 1

Views: 3461

Answers (2)

Akshay Kadam
Akshay Kadam

Reputation: 568

Try to add the following path in environment variable also:

"C:\Python27\Lib\site-packages"

Since this path consists all the third party modules installed on your PC and also verify if robot-framework library is present in this folder.

Upvotes: 1

sejal
sejal

Reputation: 1

I faced the same issue. Install a different bit version of ROBOT framework. In my case, I was first trying to install 64bit version but it said "No Python installation found in the registry." Then I tried to install the 32bit version of ROBOT framework and it worked. So there is nothing wrong with your Python version.

Upvotes: 0

Related Questions