I have a python package (empty __init__.py inside) with several scripts, let's call it "mypackage" for simplifying. Then, I have two scripts, one called "utils.py", one call "view.py". I want to import utils in view, but, depending on the computer I am using (both Windows 10, both WinPython, both PyCharm, both 64bit), only one import form works, from the following two:
import utils as u
OR
import mypackage.utils as u
Why are not both of them working?