skip to Main Content

I get an error when I type the command to install Robotframework ride on my Debian :

pip3 install robotframework--ride

The error is :

Could not find a version that satisfies the requirement Pywin32 (from robotframework--ride) (from versions: )
No matching distribution found for Pywin32 (from robotframework--ride)

Btw, it is quite strange that Pywin32 is mentionned while I’m not on Windows… I have both python2 andpython3` on my machine and I’ve read many topics where I saw it could bring about problems so it may be the reason I have this error…

3

Answers


  1. Try the above installation.

    pip3 install robotframework–ride is only for Windows according to instruction given. Apparently Pywin32 is for creating desktop shortcut in windows.

    Login or Signup to reply.
  2. can you please try the following two steps mentioned below?
    According to this RIDE-doc, one needs to do the following if they are not on windows.

    Excerpt from release notes

    NOTE: The installation process mentioned in
    the RIDE-RELEASE-NOTES is only working smoothly on Windows.

    For other operating systems is better to do a two step install, with:

    pip install -U -r https://raw.githubusercontent.com/robotframework/RIDE/master/requirements.txt
    pip install -U robotframework-ride
    
    Login or Signup to reply.
  3. That problem was fixed in versions not yet released.
    See Release Notes for v1.7.4b2 on recommendations to install. Please install wxPython before.

    A new version will be released soon.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search