I get an error while trying to install Ride

人走茶凉 提交于 2020-02-06 08:46:11

问题


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...


回答1:


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



回答2:


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.




回答3:


  • pip install -U -r https://raw.githubusercontent.com/robotframework/RIDE/master/requirements.txt
  • pip install -U robotframework-ride

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.



来源:https://stackoverflow.com/questions/59372509/i-get-an-error-while-trying-to-install-ride

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!