ModuleNotFoundError:没有名为“firebase”的模块

问题描述 投票:0回答:4

嗨,我已经安装了这两个

!pip3 install python-firebase
!pip3 install firebase 

通过jupyterlab但仍然出现以下错误:

ModuleNotFoundError: No module named 'firebase'

我该如何解决这个问题?

python firebase
4个回答
2
投票

你试过

python -m pip install python-firebase
吗?希望它会起作用!


0
投票

试试这个:

pip install firebase-admin

然后:

import firebase_admin
from firebase_admin import credentials

cred = credentials.Certificate("path/to/serviceAccountKey.json")
firebase_admin.initialize_app(cred)

0
投票

我尝试在我的项目中导入 firebase 包。

没有名为 firebase.py 或任何相关内容的文件。 我创建了一个新项目并在 hello world 程序中导入了相同的包,但仍然出现该错误。 刚刚将 firebase 版本降级到任何版本(从版本:1.0.0、1.0.1、2.0.0、2.0.1、2.1.0、2.1.1、2.1.2、2.1.3、2.1.4、2.2.0 、3.0.0、3.0.1)并且它会起作用。 我在 3.0.1、3.0.0 版本上遇到了这个问题,2.2.0 对我有用。 你可以一一尝试,一定会成功的


0
投票

所有的事情都不起作用

© www.soinside.com 2019 - 2024. All rights reserved.