I'm not a power user and recently installed Homebrew and Powershell on my MacBook running Ventura 13.1 to control my new T-Mobile Home Internet Gateway and since I get the following when running terminal:
/Users/ron/.zshrc:3: no such file or directory: /usr/local/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin# ➜ ~
Any help would be appreciated.
BTW: Powershell is working great.
➜ ~ cat ~/.zshrc
Add Homebrew's executable directory to the front of the PATH
export PATH=/usr/local/bin:$PATH# If you come from bash you might have to change your
$PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
Path to your oh-my-zsh installation.
export ZSH="/Users/ron/.oh-my-zsh"
cat ~/.zshrc
– mmmmmm Jan 03 '23 at 22:17Add Homebrew's executable directory to the front of the PATH
export PATH=/usr/local/bin:$PATH# If you come from bash you might have to change your $PATH. export PATH=$HOME/bin:/usr/local/bin:$PATH
Path to your oh-my-zsh installation.
export ZSH="/Users/ron/.oh-my-zsh"
– Nora Velp Jan 04 '23 at 13:30