I have a project having the structure
/example ../prediction ....__init__.py ....a.py
PYTHONPATH is pointed to /example
now I open the python in terminal and type
import prediction
it succeeded, but if I type
import prediction.a
it returns error
ImportError: No module named 'prediction.a'; 'prediction' is not a package
why is that? isn't that already imported as a package
The behavior you are seeing can be caused if there is a module (foo.py
) or package (foo/__init__.py
) in your current directory that has a conflicting name.
In your case, I suspect there is a file named prediction.py
, and you're getting that instead of the prediction
package in your examples
directory.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With