Search code examples
pathwgetgit-bash

wget command not found in git bash


I've already tried pip install wget in my cmd, which reads

>pip install wget
Requirement already satisfied: wget in c:\users\user\...\python\python38-32\lib\site-packages (3.2)

however when I try the command in git bash, it keeps showing

$ wget
bash: wget: command not found

I've made sure both the python file and the git file are in PATH.

What am I doing wrong here?


Solution

  • With the command:

    pip install wget
    

    you installed this Python library https://pypi.org/project/wget/, so you can use that from inside Python:

    import wget
    

    I imagine what you actually want is to be able to use wget from inside Git bash. To do what, install Wget for Windows and add the executable to the path. Or, alternatively, use curl.