MustaphaTR / Romanovs-Vengeance

Romanov's Vengeance is an OpenRA mod based on Red Alert 2.
GNU General Public License v3.0
256 stars 31 forks source link

Can't compile propperly - "The OpenRA mod template requires python." #109

Open Ignacivs opened 11 months ago

Ignacivs commented 11 months ago

Hello!

I am facing an issue with the Python, I can't fetch engine. Is there a way for me to copy an engine and remove the fetch step from the Makefile ?

LinuxDonald commented 9 months ago

Whats the error log? Maybe someone can help you

j-s-3 commented 5 months ago

fetch-engine.sh expects python to be available as a command. I'm using python3 without an alias.

I was able to fix this by changing line 6 of fetch-engine.sh to use python3 command -v python >/dev/null 2>&1 to command -v python3 >/dev/null 2>&1

Alternatively you could alias python to python3