hi my name is ho
zsh: command not found: cd.. error
Let's find out about this error.
zsh: command not found: cd..
this is error . When using cd.. in the macOS terminal environment, you'll encounter a "zsh: command not found: cd.." error. This is because the system interprets cd.. as a single command, which doesn't exist.
The correct usage is:
cd ..
Here, the space between cd and .. is crucial. This correctly separates:
cd: The Change Directory command..: The argument representing the parent directory
The system interprets this as "change to the parent directory".
Therefore, the correct full command for your Flutter project cleanup and reinstallation would be:


0 Comments