Reputation: 5899
I'm trying to run the firebase admin SDK in python3 on the Raspberry pi but it's not working.
I run (in the console)
sudo pip install firebase-admin
To install and then attempt to use (in the IDSL)
import firebase_admin
in Python 3 but I get the no module found error. What might I be missing? This is on a fresh install of Raspbian on an old Pi.
Upvotes: 3
Views: 5991
Reputation: 5899
Turns out all I needed to do was use the following command instead:
sudo pip3 install firebase-admin
Upvotes: 7