I'm trying to get my program to read an .ipynb file type that contains graphs, images and text:
f = open(r"~/Documents/Dev/Python/facial-emotion-recognition.ipynb","r")
print(f.read())
but it keeps printing
FileNotFoundError: [Errno 2] No such file or directory
I already tried adding the file directory but that still doesn't work. I'm doing this on a chrome book where this file type isn't supported but I installed jupyter and could open the file on that.