Bonjour à tous,

J'utilise Python 3.5, il fonctionne bien en console, mais je n'arrive pas à exécuter un script dans Scite.

Documentation Scite : http://www.scintilla.org/SciTEDoc.html
SciTE can perform commands to compile or run source files with the output from these commands directed into the output pane.

For example, if Python is installed on the machine, open a new document, type:

print "Hi"
as that document's text.

Save the document as printhi.py.
The document should now appear coloured as SciTE is using the file's extension to decide upon the syntax styling to use:
print "hi"
Perform the Tools | Go command.
The output window will be made visible if it is not already visible and will show:
>python -u printhi.py
hi
>Exit code: 0
The first blue line is from
Voici l'erreur que j'obtiens :
>pythonw -u "test.py"
>Le fichier spécifié est introuvable.
Je ne comprends pas, le script est ouvert dans Scite, il est reconnu comme du Python. Que dois-je configurer d'autre ? D'avance merci pour votre aide.