how to solve the error when you want to update the php version 8.1

Viewed 72

command : brew install php

Every time I want to update php on Mac I always get an error like this:

Downloading https://www.freetds.org/files/stable/freetds-1.3.13.tar.bz2
Error: php: Failed to download resource "freetds"
Download failed: Homebrew-installed `curl` is not installed for: https://www.freetds.org/files/stable/freetds-1.3.13.tar.bz2

how to handle it ??

1 Answers

try

brew install curl

it's worked for me

Related