2016-07-22 58 views
0

我在python下面的代碼中運行有問題;ImportError:沒有名爲helpers的模塊(Python 2.7.12- Windows 10)

from helpers import process_titanic_line 
print(process_titanic_line(lines[0])) 

我得到的錯誤是;

ImportError        Traceback (most recent call last) 
<ipython-input-29-56917437b562> in <module>() 
    1 #NOT WORKING 
    2 
----> 3 from helpers import process_titanic_line 
    4 print(process_titanic_line(lines[0])) 

ImportError: No module named helpers 

任何幫助將不勝感激。

謝謝

+2

你在同一個文件夾中有一個名爲'helpers.py'的文件嗎?我猜不是。 'helpers'不是Python的一部分,所以它試圖導入一個用戶特定的模塊,並且無法找到它。 – Suever

+0

請給一些更多的上下文,如,如果您的項目中有helpersmodule等。 – noteness

+0

嗨Suever和Shamil,謝謝你的快速反應。我上傳了helpers.py,現在錯誤是不同的。我之前沒有上傳helpers.py文件。 –

回答

0

我不得不將輔助模塊上傳到python。我通過上傳helpers.py文件來完成項目。我想感謝所有參與討論的人。

相關問題