I\'ve recently changed my program\'s directory layout: before, I had all my modules inside the \"main\" folder. Now, I\'ve moved them into a directory named after the progra
Happened to me, solved it by adding the new location of the module to sys.path before loading pickle:
import sys sys.path.append('path/to/whiteboard') f = open("pickled_file", "rb") pickle.load(f)