I am trying to use cPickle on a windows box, using Anaconda. I am using python 3.5. I am not using a virtualenv (though probably should be).
When I try to import cPi
There is no cPickle in Python 3. Just import pickle. pickle will automatically use the C accelerator.
cPickle
pickle
try import pickle as cPickle. this way you don't have to edit much
import pickle as cPickle