我尝试在PyCharm Community Edition 4.5中导入模块。 该模块位于一个单独的文件夹(包)中,包含子文件夹......
对于许多程序员来说,这可能是一个简单的问题,但是如何将模块导入到我的项目中以便使用模块中定义的类。
更具体一点:
(1)我有一个包装' pythonds'这是一个包含多个子文件夹的文件夹,其中包含模块
(2)pythonds的路径是:
E:\Tutorials\Python Tutorials\Bioinformatics_Algorithms/pythonds
(3)在几个子文件夹中有文件夹'图表'其中包含模块' adjGraph.py'
E:\Tutorials\Python Tutorials\Bioinformatics_Algorithms\pythonds\graphs\adjGraph.py
(4)模块adjGraph.py包含我要导入的类:
I would like to import the class 'Graph' which is defined in the module adjGraph.py
非常感谢您提前,
最佳, 沃纳
答案 0 :(得分:0)
这应该有效:
from graphs.adjGraph import Graph