简体   繁体   中英

Getting error while trying to start RIDE from Command Prompt using ride.py

enter image description here I am not able to open ride from command prompt using ride.py and getting the following error "

Traceback (most recent call last):   
File "C:\Users\dell i7\AppData\Local\Programs\Python\Python37\Scripts\ride.py", line 21, in <module>     
from robotide import main ModuleNotFoundError: No module named 'robotide'".

I have Python 3.7.7 installed as well WxPython and robotframework installed using Pip install command.I have Windows 10 os. I had previously installed Python 3.6 and 3.8 as well but uninstalled them and deleted AppData as well.Still getting the same error.

Mostly robotide is not found since RIDE library is not available.

Check if RIDE is available using pip,

$ pip3 list
robotframework (3.2.1)
robotframework-ride (1.5.2.1)

or we can install RIDE library using pip,

pip3 install robotframework-ride

And check if it is installed correctly,

python -m robotide

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM