I am using RFID reader module (MFRC522) with my raspberry pi and when I run the script with python 2 it works fine and reads the RFID tag but when I run it with python3 I get an error - No Module named 'spi'
My script is -
import RPi.GPIO as GPIO
import SimpleMFRC522
reader = SimpleMFRC522.SimpleMFRC522()
try:
id,text = reader.read()
print(text)
finally:
GPIO.cleanup()
I need this to run with python3 because I am using Firebase in my project and it works with python3, not python2.7
pip3 install spi
? – Jaromanda X Apr 02 '19 at 07:49