Home > OS >  Error when importing pyrebase with python3
Error when importing pyrebase with python3

Time:12-03

I tried pip install pyrebase but when i import it says 'No module named pyrebase'. I use python3. Also I updated my pip and uninstalled other versions of python but still couldn't resolve the issue. Any help is appreciated, thanks in advance.

CodePudding user response:

Try Pyrebase4: pip install Pyrebase4.
If it still doesn't work, uninstall pyrebase with pip uninstall pyrebase, install pycryptodome with pip install pycryptodome, and then install Pyrebase4.

  • Related