If I try and run programs from an external file, it gives me a ModuleNotFoundError, even though the module is in the same folder and it runs perfectly from my Mac. For example,
File 1: (dummy.py) has this line:
print('Hello')
File 2: (dummy2.py) has this line:
import dummy
When I run File 2, on my Mac I get 'Hello' printed. On Pythonista, I get ModuleNotfoundError.
Can someone help me understand what is going on?
