我了解我们如何通过将 PyInstaller 指向文件来打包 .exe。比如:
c:\Python25\python c:\Users\Mike\Desktop\pyinstaller-1.4\Makespec.py -F -w sampleApp.py
但是有没有办法创建一个只有字符串[而不是文件]的.exe?如:
string="""
print "Hello world"
"""
buildApplication(string) #Function Does not exist