在Firebase上,我想尝试托管并查看其工作方式。 我可能实际上曾经在过去使用过,但是很久以前,当它有所不同时。
这是我的问题。当我尝试运行此命令时:
df_filters = pd.Series([['a1'], ['P1', 'P4'],['s']], index=['a','b','z'])
print (df_filters)
a [a1]
b [P1, P4]
z [s]
dtype: object
#filter only matched columns
df_filters = df_filters.loc[df_filters.index.intersection(df.columns)]
#convert to set and get intersection of each value
from itertools import repeat
m = [[bool(set(a.split(',')).intersection(b)) for a, b in zip(df[i], repeat(j))]
for i, j in df_filters.items()]
print (m)
[[True, False, False], [True, True, False]]
#flatten boolean masks and filter
df = df[pd.np.logical_or.reduce(m)]
print (df)
a b c
0 a1 P1,P3 abc
1 a2 P2,P4 def
我在终端中收到以下错误:
firebase init
我已经运行了以下命令:
Error: HTTP Error: 401, Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.
作为上一个命令,所以我不知道缺少哪个“身份验证凭据”。
有人知道解决此问题的方法吗?
答案 0 :(得分:3)
您应该尝试注销并使用
再次登录firebase logout
跟着
firebase login
仅供参考,您可以在以下位置找到CLI的管理命令列表:https://firebase.google.com/docs/cli/#administrative_commands