Reputation: 773
Terminal during installation indicates such a problem:
MacBook-Pro:~ synkevych$ brew install httpie
Error: The following formula
[#<Dependency: "python" []>, #<Options: []>]
cannot be installed as binary package and must be built from source.
Install the Command Line Tools:
xcode-select --install
How can I install it?
Upvotes: 0
Views: 716
Reputation: 16252
According to the error message, you will need to install Xcode Command Line Tools (so that Python 3 from Homebrew, which HTTPie depends on, can be installed):
Install the Command Line Tools:
xcode-select --install
Upvotes: 1