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