bonjour

avez vous une idée sur le point suivant, j'ai installer sur window cette version de python

Download Windows x86-64 executable installer https://www.python.org/ftp/python/3.....6.3-amd64.exe

si je lance
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
 
# coding: utf-8  
 
import tkinter 
from tkinter.filedialog import askopenfilename
 
'''Created on 21 aout 2017 
 '''
def explorateur_window(repertoireinit):
    """ Explorateur Windows    """
    #root = tkinter.Tk()
 
    filename = tkinter.filedialog.askopenfilename(
        initialdir=repertoireinit,
        title="Choisir votre fichier",
        filetypes=(
            ("Fichier .txt", "*.txt"),
            ("Tous type de fichier","*.*")
        )
    )
    return filename
pass

j'obtient une erreur win32 dll pour tkinter.

Je suis obliger de réinstaller une version win32 de python Download Windows x86 web-based installer https://www.python.org/ftp/python/3....webinstall.exe

dans ce cas cela marche.

mais j'aimerai utiliser la version 64bit correspondant à ma version de windows.

autre point que faut-il installer sur windows si l'on souhaite compiler les bib lors de l'installation de python ?