It seems that you have made a mistake when editing `PATH` variable. Backslash character in your `PATH` output was considered literal, not escaping for space.
You need:
PATH="/Applications/Racket v6.2/bin:$PATH"; export PATH
or:
PATH=/Applications/Racket\ v6.2/bin:$PATH; export PATH