我正在尝试使用python firebase.google.com,并将我的项目连接到我的python文件,我已经安装了pyrebase4,根据文档,我什么都做了。
我面临过很多问题,比如
在python文件中导入pyrebase时,我得到了以下错误:

第二,当试图安装pyrebase时,我得到的错误如下
Installation error with pycryptodome
(and a lots of line with after this )github的人提供指示
pip install pyrebase4
pip install pyrebase-t
pip install pycryptodome但是pycryptodome也成功安装,但在
pip install pyrebase-t有错误,就像
Attempting uninstall: requests
Found existing installation: requests 2.11.1
Uninstalling requests-2.11.1:
Successfully uninstalled requests-2.11.1
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed.
This behaviour is the source of the following dependency conflicts.
pyrebase4 4.4.3 requires oauth2client>=4.1.2, but you have oauth2client 3.0.0 which is incompatible.
pyrebase-t 1.0.28 requires requests==2.11.1, but you have requests 2.25.1 which is incompatible.
Successfully installed requests-2.25.1发布于 2021-12-09 13:48:21
首先,通过运行以下命令卸载pyrebase、pyrebase4、pyrebase-t或pycryptodome
pip uninstall pyrebase, pyrebase4, pyrebase-t, pycryptodome然后通过运行以下命令重新安装pycryptodome
pip install pycryptodome之后,通过运行下面的命令来安装pyrebase4
pip install pyrebase4希望这能像解决我的问题一样解决这个问题。
https://stackoverflow.com/questions/66910243
复制相似问题