可能重複:
How to import the src from the tests module in python如何導入模塊
我想打電話給其位於另一個目錄另一個模塊。我的代碼結構是
flask_beginner/
app.py
models/
__init__.py
user.py
tests/
__init__.py
user_test.py
我想從user_test.py調用用戶模塊。我user_test.py是這樣的..
import models.user
....
但它引發錯誤,任何模塊名爲models.user
你有什麼想法? 我的Python版本是2.7.2。(帶有virtualenv)
在此先感謝。
感謝我的理解(其中,當然,你應該用正確的路徑,其中,在這種情況下,將
'../models/user.py'
更換<the_path_to_the_module>
)。我從我的根目錄運行模塊,它成功了!謝謝。 – nobinobiru