Reputation: 795
On my Windows 10 machine open() throws FileNotFoundError for a file that does exist. The same file on a Windows 7 machine is found. What's going on?
Upvotes: 0
Views: 274
Reputation: 795
The problem was using python 32-bit on a 64-bit machine. Python x64 opens the file as expected.
Upvotes: 1