Кто-нибудь получал «Шаг № 1 -« строитель »: IOError: [Errno 2] Нет такого файла или каталога:« /workspace/requirements.txt -t lib / 'для установки этих зависимостей \ 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
У меня естьДважды проверил, что файл require.txt находится в том же каталоге, что и сценарий main.py, и кажется, что файл require.txt считывается при развертывании на основе того, что говорят журналы, но затем не может найти файлв рабочей области.
Я выполняю развертывание из виртуального окружения и убедился, что в виртуальном окружении я выполнил команду 'pip install -r needs.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