我有以下小程序:

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.
有什么办法可以解决这个问题,并构建一个真正的独立应用程序?

最佳答案

对于Windows应用程序,我已经使用py2exe(http://www.py2exe.org/)取得了一定的成功。它打包了以一种不错的方式运行事物所需的东西,包括基本的python库。

10-08 08:49