The error message suggests that the command "run" is not recognized by the zsh shell. If you are trying to execute a specific command or script, make sure it is installed and accessible in your system.
If the command is installed but still not found, it might not be in the system's PATH. You can try specifying the full path to the command or updating your PATH variable.
To specify the full path to the command, use the following format:
/path/to/command/run
To update the PATH variable, add the directory containing the "run" command to the PATH. You can do this by editing your shell configuration file (e.g., ~/.zshrc) and adding the following line:
export PATH="/path/to/directory:$PATH"
Remember to replace "/path/to/directory" with the actual directory path where the "run" command resides.
After making any changes, save the file and restart your zsh shell or run the command `source ~/.zshrc` to apply the changes immediately.
If the issue persists or you need further assistance, please provide more information about the command you are trying to run and your system environment details.