Prabin Shrestha
Prabin Shrestha

Reputation: 7

How to install wget in macos without home brew

Trying to install wget on my mac OS, do not want to install home brew.

I tried pip install wget, but it did not work.

Upvotes: -1

Views: 16

Answers (1)

Daweo
Daweo

Reputation: 36285

I tried pip install wget, but it did not work.

wget package for python and GNU wget are 2 different things. If you need precisely GNU wget former will not suffice, however if you need command to download files, then you might use former following way

python -m wget http://www.example.com

Upvotes: 0

Related Questions