25
What Am I Doing Wrong?
(lazysoci.al)
Welcome to the Python community on the programming.dev Lemmy instance!
Past
November 2023
October 2023
July 2023
August 2023
September 2023
Python is not found, so $ARCH gets assigned to
""
, and you didn't double quote your variables in the comparison, so the code parses as[ == "aarch64"
which is a syntax error.Also, maybe
uname -m
could work instead of that Python script.This was super insightful. Thank you so much.