```sh platform = $(python3 -mplatform) ``` should be ```sh platform=$(python3 -mplatform) ``` otherwise the command is not executed
platform = $(python3 -mplatform)should be
platform=$(python3 -mplatform)otherwise the command is not executed