Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-cloud-platform/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 数据流错误:TypeError:request()获取了意外的关键字参数';数据';,我如何修复我的DEP?_Python_Google Cloud Platform_Google Cloud Dataflow - Fatal编程技术网

Python 数据流错误:TypeError:request()获取了意外的关键字参数';数据';,我如何修复我的DEP?

Python 数据流错误:TypeError:request()获取了意外的关键字参数';数据';,我如何修复我的DEP?,python,google-cloud-platform,google-cloud-dataflow,Python,Google Cloud Platform,Google Cloud Dataflow,我正在从事一个Google数据流项目,以下是该项目的要求: absl-py==0.7.1 apache-beam==2.5.0 astor==0.7.1 avro==1.8.2 backports.weakref==1.0.post1 cachetools==3.1.0 certifi==2019.3.9 chardet==3.0.4 crcmod==1.7 dill==0.2.6 docopt==0.6.2 enum34==1.1.6 fasteners==0.14.1 funcsigs==1

我正在从事一个Google数据流项目,以下是该项目的要求:

absl-py==0.7.1
apache-beam==2.5.0
astor==0.7.1
avro==1.8.2
backports.weakref==1.0.post1
cachetools==3.1.0
certifi==2019.3.9
chardet==3.0.4
crcmod==1.7
dill==0.2.6
docopt==0.6.2
enum34==1.1.6
fasteners==0.14.1
funcsigs==1.0.2
future==0.16.0
futures==3.2.0
gapic-google-cloud-pubsub-v1==0.15.4
gast==0.2.2
google-api-core==1.10.0
google-apitools==0.5.20
google-auth==1.6.3
google-auth-httplib2==0.0.3
google-cloud-bigquery==0.25.0
google-cloud-core==0.25.0
google-cloud-dataflow==2.5.0
google-cloud-datastore==1.7.3
google-cloud-pubsub==0.26.0
google-cloud-storage==1.15.0
google-gax==0.15.16
google-resumable-media==0.3.2
googleapis-common-protos==1.5.10
googledatastore==7.0.1
grpc-google-iam-v1==0.11.4
grpcio==1.20.1
h5py==2.9.0
hdfs==2.5.2
hdfs3==0.3.0
httplib2==0.9.2
idna==2.8
Keras-Applications==1.0.7
Keras-Preprocessing==1.0.9
Markdown==3.1
mock==2.0.0
monotonic==1.5
numpy==1.16.3
oauth2client==3.0.0
pbr==5.2.0
Pillow==6.0.0
ply==3.8
proto-google-cloud-datastore-v1==0.90.4
proto-google-cloud-pubsub-v1==0.15.4
protobuf==3.7.1
pyasn1==0.4.5
pyasn1-modules==0.2.5
pytz==2019.1
PyVCF==0.6.8
PyYAML==3.13
requests==2.21.0
rsa==4.0
six==1.10.0
tensorboard==1.13.1
tensorflow==1.13.1
tensorflow-estimator==1.13.0
termcolor==1.1.0
typing==3.6.6
urllib3==1.24.2
Werkzeug==0.15.2
我遇到的问题是,管道中的一个步骤将文件上载到google存储(使用
blob.upload\u from\u file
)。这在以前是可行的,但后来我不得不重新创建虚拟环境,因为我遇到了其他问题。我正在使用Python2.7,并使用pip安装了必要的软件包

我从
pip安装谷歌云数据流开始,虽然根据文档我应该做
pip安装apache-beam[gcp]
,但这对我来说从来都不起作用(
没有找到匹配项:apache-beam[gcp]
)。我知道这是一些软件包版本冲突,但我无法找到解决方案

有没有人有过类似的问题


我尝试升级到最新的谷歌云软件包,但正如预期的那样,它引发了各种各样的问题

方括号可能是shell的特殊字符。您可以尝试
pip安装“apachebeam[gcp]”

我一定会尝试一下并让您知道!真不敢相信,就是这样!