繁体   English   中英

Python - py2exe - DeprecationWarning

[英]Python - py2exe - DeprecationWarning

我已经安装了python 2.6和新版本的py2exe。

hello.py

print "Hello from py2exe"

setup.py

from distutils.core import setup
import py2exe

setup(
    # The first three parameters are not required, if at least a
    # 'version' is given, then a versioninfo resource is built from
    # them and added to the executables.
    version = "0.5.0",
    description = "py2exe sample script",
    name = "py2exe samples",

    # targets to build
    windows = ["test_wx.py"],
    console = ["hello.py"],
    )

我在控制台试过这个

python setup.py install

但我收到此错误消息

D:\Python26\lib\site-packages\py2exe\build_exe.py:16: DeprecationWarning: the sets module is deprecated
import sets
running install
running build
running install_egg_info
Removing D:\Python26\Lib\site-packages\py2exe_samples-0.5.0-py2.6.egg-info
Writing D:\Python26\Lib\site-packages\py2exe_samples-0.5.0-py2.6.egg-info

我错了什么? 我该怎么解决?

这不是一个错误,它只是一个关于已弃用的类的警告; 在这种情况下,不推荐使用sets模块,新代码现在应该使用内置的set类。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM