Code doesnt work

Hi guys,

I’m trying to download a dataset using this code in Python, from an ML Codelab but it doesn’t work.

!wget --no-check-certificate
https://storage.googleapis.com/laurencemoroney-blog.appspot.com/rps.zip
-O /tmp/rps.zip

It just shows as invalid syntax.
I tried installing wget in my env but makes no difference.

try without the line breakers:

!wget --no-check-certificate https://storage.googleapis.com/laurencemoroney-blog.appspot.com/rps.zip  -O /tmp/rps.zip

Hi

I was trying to run this as code in Python when both are actually shell commands to be run without the bang

:slight_smile:

1 Like