I have already pickled file and i use to un-pickle it
with open(meta_path, 'rb') as f:
result = pickle.load(f)
on my machine python3 version is 3.6.9 python2 version is 2.7.17
most of answers suppose to use protocol=2 during dumping as this answer but the problem is the file is already dumped I did not pickled it, that is why I do not know which protocol was used. Can anyone help me to un-pickle this file?
You can use pickletools to identify the Protocol version. Have a look in the stdout which version was used. Probably Python2 is not able to unpickle dumps using protocol versions > 2.
Out for Python3 (truncated):