简体   繁体   中英

How do I install homebrew on macOS? Error: > -bash: $: command not found

When I copy/paste this link:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

on the terminal it keeps giving me this error:

-bash: $: command not found

I don't have much experience at dealing with this type of code. If someone could help me it would be really appreciated. I was trying to install HomeBrew to get some Unitiy packages from their github.

You're copying the leading $ , which is the prompt, not part of the command. It is to indicate "this is something you should paste on the commandline." The actual command is:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

If you click the "clipboard" icon at brew.sh , it'll copy the correct command to your clipboard.

指向 brew.sh 中剪贴板图标的指针

Note that this "leading $ prompt" indicator is used throughout the brew.sh site (and is very common in unix-style documentation). So when you see $ brew install wget , that means to type "brew install wget" at the command prompt. It does not mean to type $ .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM