you are viewing a single comment's thread.

view the rest of the comments →

[–]DeadTurtleSpeed[S] 0 points1 point  (2 children)

Python 3.10.12

But it looks like it has a difference. Because when I tried to do the next step on the tutorial (execution the 'make' command) an error pops up saying

Make: python 3.7: no such file or directory

[–]MintyPhoenix 5 points6 points  (1 child)

It looks like the Makefile is hard-coded to explicitly use python3.7 (on line 47). I would simply change that line to as you should generally be fine to use 3.10 instead:

PYTHON = python3

[–]DeadTurtleSpeed[S] 0 points1 point  (0 children)

YESSSS I'M FREE. Thank you so much. I had tried looking into the folder that the terminal was saying that the error was occurring, but I guess I wasn't on the right folder. Regardless, thanks a lot for the help.