pycharm中的我的文件夾結構如下。導入錯誤:無模塊名爲common
--python
--concepts
--common
--myds.py
--__init__.py
--data_structures
--test_ds.py
我在test_ds.py
from common import my_ds
我收到以下錯誤以下行。
ImportError: No module named 'common'
我已經加入到common
Settings --> Project Interpreter -> Interpreter Paths
和文件夾顯示爲library root
。
仍然爲什麼我得到這個錯誤。
我得到'關於SystemError:父模塊'不裝,是用'..'時不能進行相對import' – liv2hak
哦,父目錄也需要一個'__init __ py'文件!即使它是完全空的。如果父目錄不打算成爲python包,則需要對包進行不同的重構。 –
通過上面的樹形結構的'concepts'文件夾中的父目錄。 – liv2hak