IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Déploiement/Installation Python Discussion :

erreur au lancement de l'exe généré par cx_freeze


Sujet :

Déploiement/Installation Python

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    Lycéen
    Inscrit en
    Septembre 2011
    Messages
    6
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Lycéen

    Informations forums :
    Inscription : Septembre 2011
    Messages : 6
    Points : 1
    Points
    1
    Par défaut erreur au lancement de l'exe généré par cx_freeze
    Bonjour à tous !

    J'essaye de créer un exécutable à partir de mon script avec cx_freeze. J'utilise Python 3.1.
    J'ai opté pour la méthode setup.py dont je vous donne le code :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
     
    import sys, os
    from cx_Freeze import setup, Executable
     
    # preparation des options 
    includes = ["classes"]
    excludes = []
    packages = []
     
    options = {"includes": includes,
               "excludes": excludes,
               "packages": packages
               }
     
    # preparation des cibles
    base = None
    if sys.platform == "win32":
        base = "Win32GUI"
     
    cible_1 = Executable(
        script = "jeu.py",
        base = base,
        compress = True,
        icon = "caisse.ico",
        targetName='Mario Sokoban.exe'
        )
     
    # creation du setup
    setup(
        name = "Mario Sokoban",
        version = "0.1",
        description = "Sokoban sur une idée de M@teo21",
        author = "jAlon",
        options = {"build_exe": options},
        executables = [cible_1]
        )
    Ce code me donne un dossier build qui contient un dossier dans lequel se trouve mon .exe
    Quand je le lance une boîte de dialogue me dit:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    Exception raised when calling format_exception.
    Exception : 'tuple' object has no attribute '__cause__'
    Original exception : (2, 'Le fichier spécifié est introuvable', 'C:\Chemin vers mon dossier\build\exe.win32-3.1\\Mario Soko')
    Pouvez-vous m'aidez à comprendre cette erreur. Merci.

  2. #2
    Membre éprouvé
    Avatar de afranck64
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2009
    Messages
    592
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 592
    Points : 1 006
    Points
    1 006
    Par défaut
    Bonjour,
    ton jeu doit faire référence au fichier
    Mario Soko
    qui n'est pas présent. Il doit être dans le même dossier que ton exécutable. Tu peux le copier à la main pour des tests.
    Win 10 64 bits / Linux Mint 18, - AMD A6 Quad: Py27 / Py35
    CONTENU D'UNE QUESTION
    Exemples:
    - Configuration (système d'exploitation, version de Python et des bibliothèques utilisées)
    - Code source du morceau de programme où il y a un bogue
    - Ligne de code sur laquelle le bogue apparaît
    - Erreur complète retournée pas l'interpréteur Python
    - Recherche déjà effectuée (FAQ, Tutoriels, ...)
    - Tests déjà effectués

  3. #3
    Nouveau Candidat au Club
    Homme Profil pro
    Lycéen
    Inscrit en
    Septembre 2011
    Messages
    6
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Lycéen

    Informations forums :
    Inscription : Septembre 2011
    Messages : 6
    Points : 1
    Points
    1
    Par défaut
    Quand tu dis "mon jeu", tu parles du script que j'ai codé ? Car je n'ai aucune référence dans mon script à un quelconque fichier 'Mario Soko'.

  4. #4
    Membre éprouvé
    Avatar de afranck64
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2009
    Messages
    592
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 592
    Points : 1 006
    Points
    1 006
    Par défaut
    Je fais référence à ceci:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Original exception : (2, 'Le fichier spécifié est introuvable', 'C:\Chemin vers mon dossier\build\exe.win32-3.1\\Mario Soko')
    Win 10 64 bits / Linux Mint 18, - AMD A6 Quad: Py27 / Py35
    CONTENU D'UNE QUESTION
    Exemples:
    - Configuration (système d'exploitation, version de Python et des bibliothèques utilisées)
    - Code source du morceau de programme où il y a un bogue
    - Ligne de code sur laquelle le bogue apparaît
    - Erreur complète retournée pas l'interpréteur Python
    - Recherche déjà effectuée (FAQ, Tutoriels, ...)
    - Tests déjà effectués

  5. #5
    Nouveau Candidat au Club
    Homme Profil pro
    Lycéen
    Inscrit en
    Septembre 2011
    Messages
    6
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Lycéen

    Informations forums :
    Inscription : Septembre 2011
    Messages : 6
    Points : 1
    Points
    1
    Par défaut
    J'ai compris que tu faisais référence au message d'erreur mais lorsque je lance normalement mon script pyton je n'ai pas d'exception.
    C'est donc la transformation en .exe qui génère l'erreur, non ? La question est donc comment y remédier.

  6. #6
    Membre éprouvé
    Avatar de afranck64
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2009
    Messages
    592
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 592
    Points : 1 006
    Points
    1 006
    Par défaut
    je ne m y connais pas en integration de fichiers/dossiers sous cx-freeze . alors ce que je te propose c est de copier tes fichiers et dossiers dans le dossier contenant ton programme.
    Win 10 64 bits / Linux Mint 18, - AMD A6 Quad: Py27 / Py35
    CONTENU D'UNE QUESTION
    Exemples:
    - Configuration (système d'exploitation, version de Python et des bibliothèques utilisées)
    - Code source du morceau de programme où il y a un bogue
    - Ligne de code sur laquelle le bogue apparaît
    - Erreur complète retournée pas l'interpréteur Python
    - Recherche déjà effectuée (FAQ, Tutoriels, ...)
    - Tests déjà effectués

  7. #7
    Nouveau Candidat au Club
    Homme Profil pro
    Lycéen
    Inscrit en
    Septembre 2011
    Messages
    6
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Lycéen

    Informations forums :
    Inscription : Septembre 2011
    Messages : 6
    Points : 1
    Points
    1
    Par défaut
    Ah ok, je n'avais pas compris.
    J'ai copié toutes les ressources utilisées dans le dossier où il y a l'exe.
    Aucun changement, toujours cette erreur .

  8. #8
    Membre éprouvé
    Avatar de afranck64
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2009
    Messages
    592
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 32
    Localisation : Cameroun

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 592
    Points : 1 006
    Points
    1 006
    Par défaut
    Là je dirai ,
    peut tu poster le .log généré? ça pourrait aider.
    Win 10 64 bits / Linux Mint 18, - AMD A6 Quad: Py27 / Py35
    CONTENU D'UNE QUESTION
    Exemples:
    - Configuration (système d'exploitation, version de Python et des bibliothèques utilisées)
    - Code source du morceau de programme où il y a un bogue
    - Ligne de code sur laquelle le bogue apparaît
    - Erreur complète retournée pas l'interpréteur Python
    - Recherche déjà effectuée (FAQ, Tutoriels, ...)
    - Tests déjà effectués

  9. #9
    Nouveau Candidat au Club
    Homme Profil pro
    Lycéen
    Inscrit en
    Septembre 2011
    Messages
    6
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Lycéen

    Informations forums :
    Inscription : Septembre 2011
    Messages : 6
    Points : 1
    Points
    1
    Par défaut
    Je n'ai pas de log à l’exécution si c'est ça que tu veux.
    Par contre je poste ici le résultat de
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    running build
    running build_exe
    copying C:\Python31\lib\site-packages\cx_Freeze\bases\Win32GUI.exe -> build\exe.win32-3.1\Mario Sokoban.exe
    copying C:\Python31\python31.dll -> build\exe.win32-3.1\python31.dll
    *** WARNING *** unable to create version resource
    install pywin32 extensions first
    writing zip file build\exe.win32-3.1\library.zip
     
      Name                      File
      ----                      ----
    m BUILD_CONSTANTS           
    m __future__                C:\Python31\lib\__future__.py
    m __main__                  
    m _abcoll                   
    m _bisect                   
    m _codecs                   
    m _codecs_cn                
    m _codecs_hk                
    m _codecs_iso2022           
    m _codecs_jp                
    m _codecs_kr                
    m _codecs_tw                
    m _collections              
    m _compat_pickle            C:\Python31\lib\_compat_pickle.py
    m _ctypes                   C:\Python31\DLLs\_ctypes.pyd
    m _dummy_thread             C:\Python31\lib\_dummy_thread.py
    m _functools                
    m _hashlib                  C:\Python31\DLLs\_hashlib.pyd
    m _heapq                    
    m _io                       
    m _locale                   
    m _md5                      
    m _multibytecodec           
    m _multiprocessing          C:\Python31\DLLs\_multiprocessing.pyd
    m _pickle                   
    m _random                   
    m _sha1                     
    m _sha256                   
    m _sha512                   
    m _socket                   C:\Python31\DLLs\_socket.pyd
    m _sre                      
    m _ssl                      C:\Python31\DLLs\_ssl.pyd
    m _strptime                 C:\Python31\lib\_strptime.py
    m _struct                   
    m _subprocess               
    m _thread                   
    m _threading_local          C:\Python31\lib\_threading_local.py
    m _warnings                 
    m _weakref                  
    m _weakrefset               
    m abc                       
    m array                     
    m atexit                    
    m base64                    C:\Python31\lib\base64.py
    m bdb                       C:\Python31\lib\bdb.py
    m binascii                  
    m bisect                    C:\Python31\lib\bisect.py
    m builtins                  
    m calendar                  C:\Python31\lib\calendar.py
    m classes                   C:\Users\jAlon\Documents\Prog\Python\Mario Sokoban\classes.py
    m cmd                       C:\Python31\lib\cmd.py
    m codecs                    
    m collections               C:\Python31\lib\collections.py
    m copy                      C:\Python31\lib\copy.py
    m copyreg                   
    P ctypes                    C:\Python31\lib\ctypes\__init__.py
    m ctypes._endian            C:\Python31\lib\ctypes\_endian.py
    m cx_Freeze__init__         C:\Python31\lib\site-packages\cx_Freeze\initscripts\Console3.py
    m datetime                  
    m difflib                   C:\Python31\lib\difflib.py
    m dis                       C:\Python31\lib\dis.py
    m doctest                   C:\Python31\lib\doctest.py
    m dummy_threading           C:\Python31\lib\dummy_threading.py
    P email                     C:\Python31\lib\email\__init__.py
    m email._parseaddr          C:\Python31\lib\email\_parseaddr.py
    m email.base64mime          C:\Python31\lib\email\base64mime.py
    m email.charset             C:\Python31\lib\email\charset.py
    m email.encoders            C:\Python31\lib\email\encoders.py
    m email.errors              C:\Python31\lib\email\errors.py
    m email.feedparser          C:\Python31\lib\email\feedparser.py
    m email.generator           C:\Python31\lib\email\generator.py
    m email.header              C:\Python31\lib\email\header.py
    m email.iterators           C:\Python31\lib\email\iterators.py
    m email.message             C:\Python31\lib\email\message.py
    m email.parser              C:\Python31\lib\email\parser.py
    m email.quoprimime          C:\Python31\lib\email\quoprimime.py
    m email.utils               C:\Python31\lib\email\utils.py
    P encodings                 
    m encodings.aliases         
    m encodings.ascii           
    m encodings.big5            
    m encodings.big5hkscs       
    m encodings.charmap         
    m encodings.cp037           
    m encodings.cp1006          
    m encodings.cp1026          
    m encodings.cp1140          
    m encodings.cp1250          
    m encodings.cp1251          
    m encodings.cp1252          
    m encodings.cp1253          
    m encodings.cp1254          
    m encodings.cp1255          
    m encodings.cp1256          
    m encodings.cp1257          
    m encodings.cp1258          
    m encodings.cp424           
    m encodings.cp437           
    m encodings.cp500           
    m encodings.cp737           
    m encodings.cp775           
    m encodings.cp850           
    m encodings.cp852           
    m encodings.cp855           
    m encodings.cp856           
    m encodings.cp857           
    m encodings.cp860           
    m encodings.cp861           
    m encodings.cp862           
    m encodings.cp863           
    m encodings.cp864           
    m encodings.cp865           
    m encodings.cp866           
    m encodings.cp869           
    m encodings.cp874           
    m encodings.cp875           
    m encodings.cp932           
    m encodings.cp949           
    m encodings.cp950           
    m encodings.euc_jis_2004    
    m encodings.euc_jisx0213    
    m encodings.euc_jp          
    m encodings.euc_kr          
    m encodings.gb18030         
    m encodings.gb2312          
    m encodings.gbk             
    m encodings.hp_roman8       
    m encodings.hz              
    m encodings.idna            
    m encodings.iso2022_jp      
    m encodings.iso2022_jp_1    
    m encodings.iso2022_jp_2    
    m encodings.iso2022_jp_2004 
    m encodings.iso2022_jp_3    
    m encodings.iso2022_jp_ext  
    m encodings.iso2022_kr      
    m encodings.iso8859_1       
    m encodings.iso8859_10      
    m encodings.iso8859_11      
    m encodings.iso8859_13      
    m encodings.iso8859_14      
    m encodings.iso8859_15      
    m encodings.iso8859_16      
    m encodings.iso8859_2       
    m encodings.iso8859_3       
    m encodings.iso8859_4       
    m encodings.iso8859_5       
    m encodings.iso8859_6       
    m encodings.iso8859_7       
    m encodings.iso8859_8       
    m encodings.iso8859_9       
    m encodings.johab           
    m encodings.koi8_r          
    m encodings.koi8_u          
    m encodings.latin_1         
    m encodings.mac_arabic      
    m encodings.mac_centeuro    
    m encodings.mac_croatian    
    m encodings.mac_cyrillic    
    m encodings.mac_farsi       
    m encodings.mac_greek       
    m encodings.mac_iceland     
    m encodings.mac_latin2      
    m encodings.mac_roman       
    m encodings.mac_romanian    
    m encodings.mac_turkish     
    m encodings.mbcs            
    m encodings.palmos          
    m encodings.ptcp154         
    m encodings.punycode        
    m encodings.raw_unicode_escape 
    m encodings.shift_jis       
    m encodings.shift_jis_2004  
    m encodings.shift_jisx0213  
    m encodings.tis_620         
    m encodings.undefined       
    m encodings.unicode_escape  
    m encodings.unicode_internal 
    m encodings.utf_16          
    m encodings.utf_16_be       
    m encodings.utf_16_le       
    m encodings.utf_32          
    m encodings.utf_32_be       
    m encodings.utf_32_le       
    m encodings.utf_7           
    m encodings.utf_8           
    m encodings.utf_8_sig       
    m errno                     
    m fnmatch                   C:\Python31\lib\fnmatch.py
    m functools                 C:\Python31\lib\functools.py
    m gc                        
    m genericpath               
    m getopt                    C:\Python31\lib\getopt.py
    m gettext                   C:\Python31\lib\gettext.py
    m hashlib                   C:\Python31\lib\hashlib.py
    m heapq                     C:\Python31\lib\heapq.py
    m hmac                      C:\Python31\lib\hmac.py
    P http                      C:\Python31\lib\http\__init__.py
    m http.client               C:\Python31\lib\http\client.py
    m imp                       
    m inspect                   C:\Python31\lib\inspect.py
    m io                        
    m itertools                 
    m keyword                   C:\Python31\lib\keyword.py
    m linecache                 
    m locale                    C:\Python31\lib\locale.py
    P logging                   C:\Python31\lib\logging\__init__.py
    m mario sokoban__main__     jeu.py
    m marshal                   
    m math                      
    m mmap                      
    m msvcrt                    
    P multiprocessing           C:\Python31\lib\multiprocessing\__init__.py
    m multiprocessing.connection C:\Python31\lib\multiprocessing\connection.py
    P multiprocessing.dummy     C:\Python31\lib\multiprocessing\dummy\__init__.py
    m multiprocessing.dummy.connection C:\Python31\lib\multiprocessing\dummy\connection.py
    m multiprocessing.forking   C:\Python31\lib\multiprocessing\forking.py
    m multiprocessing.heap      C:\Python31\lib\multiprocessing\heap.py
    m multiprocessing.managers  C:\Python31\lib\multiprocessing\managers.py
    m multiprocessing.pool      C:\Python31\lib\multiprocessing\pool.py
    m multiprocessing.process   C:\Python31\lib\multiprocessing\process.py
    m multiprocessing.queues    C:\Python31\lib\multiprocessing\queues.py
    m multiprocessing.reduction C:\Python31\lib\multiprocessing\reduction.py
    m multiprocessing.sharedctypes C:\Python31\lib\multiprocessing\sharedctypes.py
    m multiprocessing.synchronize C:\Python31\lib\multiprocessing\synchronize.py
    m multiprocessing.util      C:\Python31\lib\multiprocessing\util.py
    m nt                        
    m ntpath                    
    m opcode                    C:\Python31\lib\opcode.py
    m operator                  
    m optparse                  C:\Python31\lib\optparse.py
    m os                        
    m pdb                       C:\Python31\lib\pdb.py
    m pickle                    C:\Python31\lib\pickle.py
    m posixpath                 
    m pprint                    C:\Python31\lib\pprint.py
    m pyexpat                   C:\Python31\DLLs\pyexpat.pyd
    P pygame                    C:\Python31\lib\site-packages\pygame\__init__.py
    m pygame._numpysndarray     C:\Python31\lib\site-packages\pygame\_numpysndarray.py
    m pygame._numpysurfarray    C:\Python31\lib\site-packages\pygame\_numpysurfarray.py
    m pygame.base               C:\Python31\lib\site-packages\pygame\base.pyd
    m pygame.bufferproxy        C:\Python31\lib\site-packages\pygame\bufferproxy.pyd
    m pygame.cdrom              C:\Python31\lib\site-packages\pygame\cdrom.pyd
    m pygame.color              C:\Python31\lib\site-packages\pygame\color.pyd
    m pygame.colordict          C:\Python31\lib\site-packages\pygame\colordict.py
    m pygame.compat             C:\Python31\lib\site-packages\pygame\compat.py
    m pygame.constants          C:\Python31\lib\site-packages\pygame\constants.pyd
    m pygame.cursors            C:\Python31\lib\site-packages\pygame\cursors.py
    m pygame.display            C:\Python31\lib\site-packages\pygame\display.pyd
    m pygame.draw               C:\Python31\lib\site-packages\pygame\draw.pyd
    m pygame.event              C:\Python31\lib\site-packages\pygame\event.pyd
    m pygame.fastevent          C:\Python31\lib\site-packages\pygame\fastevent.pyd
    m pygame.font               C:\Python31\lib\site-packages\pygame\font.pyd
    m pygame.image              C:\Python31\lib\site-packages\pygame\image.pyd
    m pygame.imageext           C:\Python31\lib\site-packages\pygame\imageext.pyd
    m pygame.joystick           C:\Python31\lib\site-packages\pygame\joystick.pyd
    m pygame.key                C:\Python31\lib\site-packages\pygame\key.pyd
    m pygame.locals             C:\Python31\lib\site-packages\pygame\locals.py
    m pygame.mac_scrap          C:\Python31\lib\site-packages\pygame\mac_scrap.py
    m pygame.macosx             C:\Python31\lib\site-packages\pygame\macosx.py
    m pygame.mask               C:\Python31\lib\site-packages\pygame\mask.pyd
    m pygame.mixer              C:\Python31\lib\site-packages\pygame\mixer.pyd
    m pygame.mixer_music        C:\Python31\lib\site-packages\pygame\mixer_music.pyd
    m pygame.mouse              C:\Python31\lib\site-packages\pygame\mouse.pyd
    m pygame.movie              C:\Python31\lib\site-packages\pygame\movie.pyd
    m pygame.overlay            C:\Python31\lib\site-packages\pygame\overlay.pyd
    m pygame.pixelarray         C:\Python31\lib\site-packages\pygame\pixelarray.pyd
    m pygame.pkgdata            C:\Python31\lib\site-packages\pygame\pkgdata.py
    m pygame.rect               C:\Python31\lib\site-packages\pygame\rect.pyd
    m pygame.rwobject           C:\Python31\lib\site-packages\pygame\rwobject.pyd
    m pygame.sndarray           C:\Python31\lib\site-packages\pygame\sndarray.py
    m pygame.sprite             C:\Python31\lib\site-packages\pygame\sprite.py
    m pygame.surface            C:\Python31\lib\site-packages\pygame\surface.pyd
    m pygame.surfarray          C:\Python31\lib\site-packages\pygame\surfarray.py
    m pygame.surflock           C:\Python31\lib\site-packages\pygame\surflock.pyd
    m pygame.sysfont            C:\Python31\lib\site-packages\pygame\sysfont.py
    P pygame.threads            C:\Python31\lib\site-packages\pygame\threads\__init__.py
    m pygame.time               C:\Python31\lib\site-packages\pygame\time.pyd
    m pygame.transform          C:\Python31\lib\site-packages\pygame\transform.pyd
    m pygame.version            C:\Python31\lib\site-packages\pygame\version.py
    m queue                     C:\Python31\lib\queue.py
    m quopri                    C:\Python31\lib\quopri.py
    m random                    C:\Python31\lib\random.py
    m re                        C:\Python31\lib\re.py
    m reprlib                   C:\Python31\lib\reprlib.py
    m select                    C:\Python31\DLLs\select.pyd
    m shlex                     C:\Python31\lib\shlex.py
    m shutil                    C:\Python31\lib\shutil.py
    m signal                    
    m socket                    C:\Python31\lib\socket.py
    m sre_compile               C:\Python31\lib\sre_compile.py
    m sre_constants             C:\Python31\lib\sre_constants.py
    m sre_parse                 C:\Python31\lib\sre_parse.py
    m ssl                       C:\Python31\lib\ssl.py
    m stat                      
    m string                    
    m stringprep                
    m struct                    C:\Python31\lib\struct.py
    m subprocess                C:\Python31\lib\subprocess.py
    m sys                       
    m tempfile                  C:\Python31\lib\tempfile.py
    m textwrap                  C:\Python31\lib\textwrap.py
    m threading                 C:\Python31\lib\threading.py
    m time                      
    m token                     
    m tokenize                  
    m traceback                 
    m types                     C:\Python31\lib\types.py
    m unicodedata               C:\Python31\DLLs\unicodedata.pyd
    m unittest                  C:\Python31\lib\unittest.py
    P urllib                    C:\Python31\lib\urllib\__init__.py
    m urllib.parse              C:\Python31\lib\urllib\parse.py
    m uu                        C:\Python31\lib\uu.py
    m warnings                  
    m weakref                   C:\Python31\lib\weakref.py
    m winreg                    
    P xml                       C:\Python31\lib\xml\__init__.py
    P xml.parsers               C:\Python31\lib\xml\parsers\__init__.py
    m xml.parsers.expat         C:\Python31\lib\xml\parsers\expat.py
    P xmlrpc                    C:\Python31\lib\xmlrpc\__init__.py
    m xmlrpc.client             C:\Python31\lib\xmlrpc\client.py
    m zipimport                 
    m zlib                      
     
    Missing modules:
    ? AppKit imported from pygame.mac_scrap
    ? Foundation imported from pygame.mac_scrap
    ? Numeric imported from pygame
    ? OpenGL.GL imported from pygame
    ? Py25Queue imported from pygame.threads
    ? Queue imported from pygame.threads
    ? _arraysurfarray imported from pygame.surfarray
    ? _winreg imported from pygame.sysfont
    ? cStringIO imported from pygame.compat
    ? copy_reg imported from pygame
    ? multiprocessing._multiprocessing imported from multiprocessing.forking
    ? numpy imported from pygame._numpysurfarray
    ? pkg_resources imported from pygame.pkgdata
    ? pygame._numericsndarray imported from pygame.sndarray
    ? pygame._numericsurfarray imported from pygame.surfarray
    ? pygame.scrap imported from pygame
    ? pygame.sdlmain_osx imported from pygame.macosx
     
    copying C:\Python31\DLLs\_ctypes.pyd -> build\exe.win32-3.1\_ctypes.pyd
    copying C:\Python31\DLLs\_hashlib.pyd -> build\exe.win32-3.1\_hashlib.pyd
    copying C:\Python31\DLLs\_multiprocessing.pyd -> build\exe.win32-3.1\_multiprocessing.pyd
    copying C:\Python31\DLLs\_socket.pyd -> build\exe.win32-3.1\_socket.pyd
    copying C:\Python31\DLLs\_ssl.pyd -> build\exe.win32-3.1\_ssl.pyd
    copying C:\Python31\DLLs\pyexpat.pyd -> build\exe.win32-3.1\pyexpat.pyd
    copying C:\Python31\lib\site-packages\pygame\base.pyd -> build\exe.win32-3.1\pygame.base.pyd
    copying C:\Python31\lib\site-packages\pygame\SDL.dll -> build\exe.win32-3.1\SDL.dll
    copying C:\Python31\lib\site-packages\pygame\bufferproxy.pyd -> build\exe.win32-3.1\pygame.bufferproxy.pyd
    copying C:\Python31\lib\site-packages\pygame\cdrom.pyd -> build\exe.win32-3.1\pygame.cdrom.pyd
    copying C:\Python31\lib\site-packages\pygame\color.pyd -> build\exe.win32-3.1\pygame.color.pyd
    copying C:\Python31\lib\site-packages\pygame\constants.pyd -> build\exe.win32-3.1\pygame.constants.pyd
    copying C:\Python31\lib\site-packages\pygame\display.pyd -> build\exe.win32-3.1\pygame.display.pyd
    copying C:\Python31\lib\site-packages\pygame\draw.pyd -> build\exe.win32-3.1\pygame.draw.pyd
    copying C:\Python31\lib\site-packages\pygame\event.pyd -> build\exe.win32-3.1\pygame.event.pyd
    copying C:\Python31\lib\site-packages\pygame\fastevent.pyd -> build\exe.win32-3.1\pygame.fastevent.pyd
    copying C:\Python31\lib\site-packages\pygame\font.pyd -> build\exe.win32-3.1\pygame.font.pyd
    copying C:\Python31\lib\site-packages\pygame\SDL_ttf.dll -> build\exe.win32-3.1\SDL_ttf.dll
    copying C:\Python31\lib\site-packages\pygame\libfreetype-6.dll -> build\exe.win32-3.1\libfreetype-6.dll
    copying C:\Python31\lib\site-packages\pygame\zlib1.dll -> build\exe.win32-3.1\zlib1.dll
    copying C:\Python31\lib\site-packages\pygame\image.pyd -> build\exe.win32-3.1\pygame.image.pyd
    copying C:\Python31\lib\site-packages\pygame\imageext.pyd -> build\exe.win32-3.1\pygame.imageext.pyd
    copying C:\Python31\lib\site-packages\pygame\jpeg.dll -> build\exe.win32-3.1\jpeg.dll
    copying C:\Python31\lib\site-packages\pygame\libpng12-0.dll -> build\exe.win32-3.1\libpng12-0.dll
    copying C:\Python31\lib\site-packages\pygame\SDL_image.dll -> build\exe.win32-3.1\SDL_image.dll
    copying C:\Python31\lib\site-packages\pygame\libtiff.dll -> build\exe.win32-3.1\libtiff.dll
    copying C:\Python31\lib\site-packages\pygame\joystick.pyd -> build\exe.win32-3.1\pygame.joystick.pyd
    copying C:\Python31\lib\site-packages\pygame\key.pyd -> build\exe.win32-3.1\pygame.key.pyd
    copying C:\Python31\lib\site-packages\pygame\mask.pyd -> build\exe.win32-3.1\pygame.mask.pyd
    copying C:\Python31\lib\site-packages\pygame\mixer.pyd -> build\exe.win32-3.1\pygame.mixer.pyd
    copying C:\Python31\lib\site-packages\pygame\SDL_mixer.dll -> build\exe.win32-3.1\SDL_mixer.dll
    copying C:\Python31\lib\site-packages\pygame\libvorbisfile-3.dll -> build\exe.win32-3.1\libvorbisfile-3.dll
    copying C:\Python31\lib\site-packages\pygame\libogg-0.dll -> build\exe.win32-3.1\libogg-0.dll
    copying C:\Python31\lib\site-packages\pygame\libvorbis-0.dll -> build\exe.win32-3.1\libvorbis-0.dll
    copying C:\Python31\lib\site-packages\pygame\smpeg.dll -> build\exe.win32-3.1\smpeg.dll
    copying C:\Python31\lib\site-packages\pygame\mixer_music.pyd -> build\exe.win32-3.1\pygame.mixer_music.pyd
    copying C:\Python31\lib\site-packages\pygame\mouse.pyd -> build\exe.win32-3.1\pygame.mouse.pyd
    copying C:\Python31\lib\site-packages\pygame\movie.pyd -> build\exe.win32-3.1\pygame.movie.pyd
    copying C:\Python31\lib\site-packages\pygame\overlay.pyd -> build\exe.win32-3.1\pygame.overlay.pyd
    copying C:\Python31\lib\site-packages\pygame\pixelarray.pyd -> build\exe.win32-3.1\pygame.pixelarray.pyd
    copying C:\Python31\lib\site-packages\pygame\rect.pyd -> build\exe.win32-3.1\pygame.rect.pyd
    copying C:\Python31\lib\site-packages\pygame\rwobject.pyd -> build\exe.win32-3.1\pygame.rwobject.pyd
    copying C:\Python31\lib\site-packages\pygame\surface.pyd -> build\exe.win32-3.1\pygame.surface.pyd
    copying C:\Python31\lib\site-packages\pygame\surflock.pyd -> build\exe.win32-3.1\pygame.surflock.pyd
    copying C:\Python31\lib\site-packages\pygame\time.pyd -> build\exe.win32-3.1\pygame.time.pyd
    copying C:\Python31\lib\site-packages\pygame\transform.pyd -> build\exe.win32-3.1\pygame.transform.pyd
    copying C:\Python31\DLLs\select.pyd -> build\exe.win32-3.1\select.pyd
    copying C:\Python31\DLLs\unicodedata.pyd -> build\exe.win32-3.1\unicodedata.pyd

  10. #10
    Nouveau Candidat au Club
    Homme Profil pro
    Lycéen
    Inscrit en
    Septembre 2011
    Messages
    6
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Lycéen

    Informations forums :
    Inscription : Septembre 2011
    Messages : 6
    Points : 1
    Points
    1
    Par défaut
    Je n'ai pas de log à l’exécution si c'est ça que tu veux.
    Par contre je poste ici le résultat de :

    http://www.megaupload.com/?d=8R4XWC06

    Désolé de le mettre sur ME, je sais que c'est pas pratique mais si je le met dans le message ça bug (500 internal error)

Discussions similaires

  1. Réponses: 12
    Dernier message: 22/06/2010, 17h34
  2. [Runtime] Lancement d'un .exe créé par launch 4j
    Par ala1986 dans le forum API standards et tierces
    Réponses: 5
    Dernier message: 21/01/2009, 16h26
  3. Réponses: 5
    Dernier message: 05/11/2008, 23h40
  4. Erreur au lancement du setup.exe de Oracle 9.2
    Par logica dans le forum Installation
    Réponses: 2
    Dernier message: 14/09/2007, 17h13
  5. [JSP] erreur sur lancement d'exe
    Par RENAULT dans le forum Servlets/JSP
    Réponses: 8
    Dernier message: 13/07/2004, 17h01

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo