ここに私のコードがあります:
def GetAppPath():
application_path = None
if getattr(sys, 'frozen', False):
application_path = os.path.dirname(sys.executable)
elif __file__:
application_path = os.path.dirname(__file__)
return application_path
Windows では完全に動作しますが、Debian では空の文字列を返します。何が問題になる可能性がありますか?
Python 2.7.3、Debian 6.0.5 を使用しています