我有以下小程序:
import urllib2,os
urls = ['http://stahlworks.com/dev/sfk/sfk.exe','http://stahlworks.com/dev/sfk/sfk.exe','http://stahlworks.com/dev/sfk/sfk.exe','http://stahlworks.com/dev/sfk/sfk.exe']
for fruit in urls:
url = fruit
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)
os.system('cls')
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
status = status + chr(8)*(len(status)+1)
print status,
f.close()
我使用Cython编译它:
python cython.py --embed -o hello.c h.py
然后我使用gcc编译它:
gcc.exe -I"c:\python27\include" -L"c:\python27\libs" hello.c -ohello.exe -lpython27
编译之后它运行正常,直到我在没有python / python27重命名为python27x的计算机上尝试它然后我收到以下错误:
The application was unable to start correctly (0xc000007b). Click OK to close the application.
有什么方法可以解决这个问题并建立一个真正的独立应用程序吗?
答案 0 :(得分:1)
我已经使用py2exe(http://www.py2exe.org/)在Windows应用程序上取得了相当的成功。它包含了以一种很好的方式运行所需的东西,包括基本的python库。