Ride does not find path to resource library

I can run correctly test from command line in PyCharm
But when starting on command line " python -m robotide.init ", errors are given on all resource files, eg.
[WinError 3] The system cannot find the path specified: 'C:\Users\001453624\Documents\GitHub\…

To start with , is this the correct way of launching the ride GUI?

It may depend on how you have installed RIDE.

Seems that you are trying to run RIDE from the source code.

You should install RIDE with pip.

I have installed with pip within the PyCharm project : “pip install robotframework-ride”

So you must use the same python that in PyCharm.

The version you have installed of RIDE is 2.0.8.1.
I recommend to install development version v2.1dev61.

<path_to_Python>\python.exe --version # Check version is higher or equal to 3.8
<path_to_Python>\python.exe -m pip list
<path_to_Python>\python.exe -m pip show robotframework-ride

<path_to_Python>\python.exe -m pip install -U https://github.com/robotframework/RIDE/archive/master.zip

I personally always install Python in a short path. For example C:\Python312 .

Thank you, resource files are now correctly parsed. I am non technical. why is • pip install robotframework-ride not installing the best version?

What is the best version, for you?

Your problem was that you was installing from PyCharm, and that did not have the same python when you use pip from command line.

RIDE has the version 2.0.8.1 has the latest release (nomal pip command), then there is a new one, which is in pre-release mode, and you must use the command pip install -U --pre .... Finally there is the development version, with most updated code and not released to PiPy, and you use the zip archive URL.