我爲我的個人文件創建了FileManager
。這位經理的啓動器是通過以下腳本啓動的。創建python執行器的問題
#!/usr/bin/python
from ui.MovieManager import MovieManager
MovieManager().showView()
電影經理和其他模塊位於ui
和core
包,但在執行該文件作爲腳本時,我得到以下錯誤。
[email protected]:~/homework/ws-python/movie-database$ sh Launcher.py
from: can't read /var/mail/ui.MovieManager
我無法確定爲什麼這個腳本不在拾取MovieManager
模塊在當前文件夾下?但是當我執行命令python Launcher.py
時,它運行良好。
不要通過'sh'運行腳本;它期望一個bash/sh腳本。 – geoffspear
是的,你是對的。它沒有sh命令。 –