python2 用py2exe打包exe运行exe报错:没有访问网络的权限是什么意思?

clipboard.png

打包命令
python2 setup.py py2exe -p itchat,codecs,re

setup.py文件内容

from distutils.core import setup
import py2exe

setup(console=['hello.py'])

#-*-coding: UTF-8-*-
# Powered by ***
INCLUDES = []
options = {"py2exe" :  
    {"compressed" : 1,  
     "optimize" : 2,  
     "bundle_files" : 2,  
     "includes" : INCLUDES,  
     "dll_excludes": [ "MSVCP90.dll", "mswsock.dll", "powrprof.dll","w9xpopen.exe"] }}  
setup(
    options = options, 
    description = "机器人",  
    zipfile=None,
    console=[{"script": "park.py", "icon_resources": [(1, "logo.ico")] }],
    )
    
源码可以正常执行,不知道哪里打包错了,请大神指点
阅读 2.2k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题