Reputation: 7
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
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