Trying to get the following file from GitHub and the file does not download'''!wget -P {HOME}/weights -q https://github.com/WongKinYiu/yolov9/releases/tag/v0.1.1/yolov9-c.pt'''
I know they are there.
'''https://github.com/WongKinYiu/yolov9/releases/tag/v0.1/yolo9-c.pt'''
What am I doing wrong?
You have added an extra '1' in
v0.1at the URL. Also, the correct URL path is a bit different as wellwget -P $HOME/weights -q https://github.com/WongKinYiu/yolov9/releases/download/v0.1/yolov9-c.ptTry the above and it should work