Again HTTP Error 403: Forbidden MNIST

I have already read, that there was the same problem a year ago. It seemed, the problem was fixed, but now it appeared again. What should I do?

import torchvision.datasets
MNIST_train = torchvision.datasets.MNIST(’./’, download=True, train = True)
MNIST_test = torchvision.datasets.MNIST(’./’, download=True, train = False)

Tried also to make headers and use urllib, but still doesn’t work
Thanks for attention!

This should be already fixed in the master branch and should show up in the nightly binary as explained here.

Thanks a lot for a quick answer. Using your link I solved the problem