Problème RPI.GPIO, écran LDC

Bonjour à tous !
Voila je voudrais simplement brancher un écran ldc à ma pi 3 pour y afficher au moins dans un premier temps son adresse ip , l’heure la température etc … J’ai commencé à suivre ce tuto :
http://espace-raspberry-francais.fr/Composants/Ecran-LCD-1602-sur-Raspberry-Francais/

Mais je rencontre un problème au niveau de code. Première fois que je me frotte à la programmation de script pour Raspberry (et première fois pour les ports GPIO).

Comme indiqué dans le tuto j’ai voulu afficher un bête message avec le script suivant :

from RPLCD import CharLCD

lcd = CharLCD(cols=16, rows=2, pin_rs=37, pin_e=35, pins_data=[33, 31, 29, 23])

lcd.write_string(u’Espace Raspberry Francais’)

Problème il me sort cette erreur :slight_smile:

Traceback (most recent call last):
File « /home/pi/documents/GPIO/ecranLDC/LCD-texteStatique.py », line 6, in
Import RPi.GPIO as GPIO
ImportError: No module named ‹ RPi ›

J’ai chercher un peu partout, j’ai installer RPi.GPIO mais rien n’y fait, je me retrouve toujours devant ce message … Une idée ? :slight_smile: