Roman
Roman

Reputation: 773

Problem with HTTPie installation on macOS

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

Answers (1)

Jakub Roztocil
Jakub Roztocil

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

Related Questions