clipit
clipit copied to clipboard
No such file or directory: 'wget'
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?
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.