Unable to retrieve the data

we are unable to download the data from osf.io. Any other way to access the dataset?

no wget for windows :slight_smile: use this

import os
import urllib.request
fname="W1D2_data.npz"
#if not os.path.exists(fname):
#  !wget https://osf.io/c5xyf/download -O $fname

#if not os.path.exist(fname):
url = 'https://osf.io/c5xyf/download'
urllib.request.urlretrieve(url, fname)
1 Like

Yeah I figured it out… Thanks for the help!

Will fix for next edition. Thanks for noticing!