How to fix “Attempted relative import in non-package” even with __init__.py

后端 未结 19 2914
予麋鹿
予麋鹿 2020-11-21 21:51

I\'m trying to follow PEP 328, with the following directory structure:

pkg/
  __init__.py
  components/
    core.py
    __init__.py
  tests/
    core_test.py         


        
19条回答
  •  难免孤独
    2020-11-21 22:39

    Here's one way which will piss off everyone but work pretty well. In tests run:

    ln -s ../components components
    

    Then just import components like you normally would.

提交回复
热议问题