clipit icon indicating copy to clipboard operation
clipit copied to clipboard

No such file or directory: 'wget'

Open mbecker4 opened this issue 3 years ago • 1 comments

I'm attempting to run this in PyCharm. I am getting the error FileNotFoundError: [Errno 2] No such file or directory: 'wget'. It looks to be coming from output = subprocess.check_output(['wget', '-O', out, url]) from the vqgan.py file. I installed wget via pip, but it is still throwing the error. Anyone know why this error may be showing up?

mbecker4 avatar Dec 31 '21 15:12 mbecker4

Had the same issue, this worked for me: macOS systems do not come with wget, but you can install command line tools using Homebrew. Once you’ve set up Homebrew, just run brew install wget in the Terminal.

mmare avatar Feb 21 '22 19:02 mmare