We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 ?
The text was updated successfully, but these errors were encountered:
Whats the error log? Maybe someone can help you
Sorry, something went wrong.
fetch-engine.sh expects python to be available as a command. I'm using python3 without an alias.
fetch-engine.sh
python
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
command -v python >/dev/null 2>&1
command -v python3 >/dev/null 2>&1
Alternatively you could alias python to python3
No branches or pull requests
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 ?
The text was updated successfully, but these errors were encountered: