pywin32 is in an unsupported or invalid wheel/robotframework

985 Views Asked by At

When I tried to install robotframework-ride, I met below error:"pywin32 is in an unsupported or invalid wheel" I am using pip install robotframework-ride. Does any one know what's the issue? thanks.

Notes: I am using the virtual environment , python 3.6

1

There are 1 best solutions below

0
Helio On

First of all, RIDE was created long before Virtual environments exist, so it is not the recommended process.

After the virtual env activation you should be sure to use its Python. So for example:

path_to_virtual_env\bin\python -m pip install wxPython
path_to_virtual_env\bin\python -m pip install --pre robotframework-ride

This may help to troubleshoot your installation.