J'ai besoin de convertir un script Python en exécutable Windows.
J'ai Python 2.6 installé sur python26
.
J'ai créé un script et je l'ai conservé C:\pythonscript
. Dans ce dossier, il y a deux fichiers
Setup.py
et oldlogs.py
(ce fichier nécessite une conversion)
setup.py
le code est
from distutils.core import setup
import py2exe
setup(console=['oldlogs.py'])
Comment puis-je convertir oldlogs.py en un fichier exe?