- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
有没有人收到“Step #1 - “builder”: IOError: [Errno 2] No such file or directory: "/workspace/requirements.txt -t lib/' to install these dependencies\r"' 错误尝试将 python37 应用程序部署到 Google App Engine?
我正在尝试使用 python 37 标准运行时部署我的网络应用程序,并收到以下构建错误:
Step #1 - "builder": IOError: [Errno 2] No such file or directory: "/workspace/requirements.txt -t lib/' to install these dependencies\r"
Finished Step #1 - "builder"
ERROR
我仔细检查了 requirements.txt 文件是否与 main.py 脚本位于同一目录中,根据日志的内容,似乎 requirements.txt 文件是在部署时读入的,但随后在工作区中找不到文件。
我正在从虚拟环境进行部署,并确保在虚拟环境中运行“pip install -r requirements.txt”命令,但是当我部署时它仍然在日志中给出相同的错误。以下是 app.yaml 文件内容的副本和部分日志。
app.yaml 文件
runtime: python37
instance_class: B8
basic_scaling:
max_instances: 1
idle_timeout: 1m
handlers:
- url: /.*
script: auto
日志:
Step #1 - "builder": # This requirements file lists all third-party
dependencies for this project.
Step #1 - "builder": #
Step #1 - "builder": # Run 'pip install -r requirements.txt -t lib/' to
install these dependencies
Step #1 - "builder": # in `lib/` subdirectory.
Step #1 - "builder": #
Step #1 - "builder": # Note: The `lib` directory is added to `sys.path` by `appengine_config.py`.
Step #1 - "builder": flask==1.0.2
Step #1 - "builder": flask-restful==0.3.6
Step #1 - "builder": firebase-admin==2.14.0
Step #1 - "builder": pandas==0.23.4
Step #1 - "builder": datetime==4.3
Step #1 - "builder": google.auth==1.6.2
Step #1 - "builder": google.cloud==0.34.0
Step #1 - "builder": google-cloud-pubsub==0.39.0
Step #1 - "builder": dfply==0.3.3
Step #1 - "builder": requests==2.21.0
Step #1 - "builder": gunicorn
Step #1 - "builder":
Step #1 - "builder": INFO found recursive python requirements file: requirements.txt -t lib/' to install these dependencies
Step #1 - "builder": INFO checking_cached_requirements.txt_layer took 0 seconds
Step #1 - "builder": INFO build process for FTL image took 0 seconds
Step #1 - "builder": INFO full build took 0 seconds
Step #1 - "builder": Traceback (most recent call last):
Step #1 - "builder": File "/usr/lib/python2.7/runpy.py", line 174, in _run_module_as_main
Step #1 - "builder": "__main__", fname, loader, pkg_name)
Step #1 - "builder": File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
Step #1 - "builder": exec code in run_globals
Step #1 - "builder": File "/ftl.par/__main__.py", line 65, in <module>
Step #1 - "builder": File "/ftl.par/__main__.py", line 54, in main
Step #1 - "builder": File "/ftl.par/__main__/ftl/python/builder.py", line 114, in Build
Step #1 - "builder": File "/ftl.par/__main__/ftl/python/layer_builder.py", line 116, in BuildLayer
Step #1 - "builder": File "/ftl.par/__main__/ftl/common/single_layer_image.py", line 60, in GetCacheKey
Step #1 - "builder": File "/ftl.par/__main__/ftl/python/layer_builder.py", line 107, in GetCacheKeyRaw
Step #1 - "builder": File "/ftl.par/__main__/ftl/common/ftl_util.py", line 168, in descriptor_parser
Step #1 - "builder": File "/ftl.par/__main__/ftl/common/context.py", line 80, in GetFile
Step #1 - "builder": IOError: [Errno 2] No such file or directory: "/workspace/requirements.txt -t lib/' to install these dependencies\r"
Finished Step #1 - "builder"
ERROR
最佳答案
我花了一段时间才弄明白,但在工作空间中找不到 requirements.txt 文件的原因是由于 .txt 文件中的 header 被注释掉了,当然它不是 python脚本,以便注释阻止文件被正确读取。
一旦我删除了任何注释并仅保留包名称,它就会正确部署。
关于python-3.x - Google App Engine 部署失败,因为在工作区中找不到 requirements.txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53878059/
我在 *.sql 文件中得到了我的数据库转储(表、函数、触发器等)。此时我正在通过 jenkins 部署它们,通过传递执行 shell 命令: sudo -u postgres psql -d my_
我正在使用网络部署 API 来部署网络包(.zip 文件,由 MSDeploy.exe 创建)以编程方式将包发布到服务器(在发布包之前我们需要做一些其他事情这就是为什么我们不使用 MSDeploy.e
我们正在使用 Web Deploy 3 的(几乎完全未记录的)“公共(public) API”来创建我们网站的 .zip 包,然后将其同步到服务器: DeploymentBaseOptions des
将 clojure 应用程序制作成可执行文件的最简单方法是什么,例如 http://rawr.rubyforge.org/ ruby 吗? (exe 和 app 文件也是) 最佳答案 使用 leini
是否可以下载 Android 源代码并针对任何设备进行编译? 我想做的是尝试 GSM 代码部分并编译操作系统并将其部署到我的摩托罗拉手机上。 谢谢! 最佳答案 是的,但这很难,因为大多数手机不共享驱动
我正在考虑用 c/c++ 编写需要在大多数个人计算机上运行的 nbody 样式模拟。本质上是一个 O(n^2) 粒子模拟器。 因为这需要相当用户友好,所以我希望有 1 个不需要用户安装任何东西的 Wi
需要了解 kubernetes 部署中 kube_deployment_status_replicas 和 kube_deployment_spec_replicas 指标的区别 最佳答案 简而言之,
我正在尝试使用分类器部署 Maven Artifact 。由于我需要源代码和 JAR(我从 GWT 使用它),我想获得 artifact-version-classifier.jar 和 artifa
我设置部署以将我的项目代码与存储我的网站的 FTP 服务器上的项目同步。 但是,每次尝试同步时,我总是必须登录。 我什至检查了记住,但它不起作用! 我正在使用最新的 PhpStorm 2017.1.4
我在 Visual Studio 2008 中开发了一个 ASP.NET 网站。现在我想在其他机器上部署它。我怎样才能做到这一点??就像我们为 Windows 应用程序制作安装包一样,我们可以为 AS
将 QT 框架添加到我的 .app 包中 我正在关注 Qt 站点上关于部署的文档。 我创建了一个名为 HTTPClient.app 的应用程序 我在 Contents 下创建了 Framework 文
这个问题不太可能对任何 future 的访客有帮助;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于互联网的全局受众。如需帮助使这个问题更广泛适用,visit the h
我正在研究改变我目前创建营销网站的策略。目前,我完全用 PHP 从头开始构建网站,使用一个简单的包含系统。所有代码(以及内容)都存储在文件(而不是数据库)中,允许我使用 Subversion 进行
我有一个长期运行的服务(在 while 1 循环中)并通过 GCloud pub/sub 处理有效负载,之后它将结果写入数据库。 该服务不需要监听任何端口。 Kind=Deployment 的声明性
似乎部署已停滞不前。我该如何进一步诊断? kubectl rollout status deployment/wordpress Waiting for rollout to finish: 2 ou
我正在Dart中使用前端的Angular和后端的Shelf构建一个客户端/服务器应用程序。当我执行pub build时,它会按预期生成Dart文件的javascript,但不会替换HTML文件中的Da
我在 Azure 部署中心的下拉列表中看不到我的所有 Github 组织存储库。 Azure 很久以前就已经被授权了,下拉列表正确地显示了所有的存储库,直到上周我在 DevOps 中玩游戏时,不得不再
我认为标题几乎说明了一切...对于 Deployd 来说是全新的,所以任何关于如何最好地实现这一点的指示都值得赞赏。 最佳答案 要获取用户创建的集合中的对象(我假设您使用的是 javascript 库
我有一个试图用于CD服务器的部署脚本,但是在编写bash脚本以完成一些所需的步骤(例如运行npm和迁移命令)时遇到了问题。 我将如何从该脚本进入容器bash,运行下面的命令,然后退出以完成对更改的提取
我想在使用 kubectl 时将参数传递给 Kubernetes 部署命令应用部署文件。 示例:在我的部署 .yaml 中,我有如下参数,我想在使用 kubectl apply - f .yaml 运
我是一名优秀的程序员,十分优秀!