error about download datasets about hash mismatch

my environment

  • MNE version: 0.23.0
  • operating system: Windows 11

the Problems encountered:
when I fetch the template files for our forward model, the problem encountered is that::

RuntimeError: Hash mismatch for downloaded file C:\Users\Colin\AppData\Local\Temp\tmp2j87gpd5\temp.zip.part, expected 5133fe92b7b8f03ae19219d5f46e4177 but got f0d85c8eb8b69db14cb40faa7eb4da5e

and there are my code

sys.path.insert(0, '../')
# Create generic Forward Model
info = get_info() 
fwd = create_forward_model(info=info, sampling='ico2')

def get_info(kind='easycap-M10', sfreq=1000):
    montage = mne.channels.make_standard_montage(kind)
    info = mne.create_info(montage.ch_names, sfreq, ch_types=['eeg']*len(montage.ch_names), verbose=0)
    info.set_montage(kind)
    return info

def create_forward_model(sampling='ico3', info=None, verbose=0, fixed_ori=True):
    fs_dir = mne.datasets.fetch_fsaverage(verbose=verbose)

Thank you for your help in advance!

supplement:I cant find C:\Users\Colin\AppData\Local\Temp\tmp2j87gpd5\ folder in my win11 device.