python程序

时间:2018-06-07 17:24:52

标签: file unix executable traceback

在Python 3.6.2 Shell中运行时,我的程序运行时没有错误(screenshot2)。但是在通过pyinstaller运行Unix编译文件时,它会在screenshot1中显示错误。 可能是什么原因?任何人都可以帮助理解。以下是错误的屏幕截图:

enter image description here

代码运行如下:

import WaterPropCal
Continue_Choice = 'Y'
while Continue_Choice == 'Y':
    p = float(input("Sat. Pressure in kPa ? "))
    Tsat = WaterPropCal.find_Tsat(p)
    print('Sat. Temperature is : ' + str(Tsat) + ' DegC')
    Continue_Choice = str(input('Do you want to find another Psat value? Enter Y for YES or N for NO : '))

0 个答案:

没有答案