[Solved] __init__.py”, line 92, in raise RuntimeError(“Python 3.5 or later is required”)

You need to tell Visual Studio Code which python interpreter to use. By default, it’s going to use the system python.In your case, it got the Python 3.4.4 version. Open the command palette and select Python: Select Interpreter. Then select the appropriate one from the list: You can also manually set this by adding this … Read more

[Solved] Project runs in eclipse but not in command line: File not found exception [duplicate]

I assume you are starting the program from the Builds directory – not the project root. Therefore the path src\data\pokemon.csv can’t be resolved. You have to either copy the jar to the project root or start the program from the project root dir with java -jar Builds\v1.0.jar 2 solved Project runs in eclipse but not … Read more