无法通过 Divio 桌面应用程序设置本地服务器 – "Service "web" 构建失败

Cannot setup Local Server via Divio Desktop App – "Service "web" failed to build

在使用 "Python 3.5.x"、"Wagtail" 和 "Blank Boilerplate" 设置本地开发时 – 控制台 returns 出现错误

我已经检查过 docker 命令是否有效,只是不确定为什么会收到上述错误消息。

运行 Mac OS X 莫哈韦沙漠 10.14.1

Creating workspace

cloning project repository
Cloning into '/Users/charlie/Django_projects/divio-project/test-project3'...
Warning: Permanently added the RSA host key for IP address '217.150.252.171' to the list of known hosts.
Locking the website...
remote: Counting objects: 64, done.
remote: Compressing objects: 100% (53/53), done.
Unlocking the website...

remote: Total 64 (delta 20), reused 0 (delta 0)
Receiving objects: 100% (64/64), 14.86 KiB | 490.00 KiB/s, done.
Resolving deltas: 100% (20/20), done.
downloading remote docker images
Pulling db  ... done
Pulling web ... done
building local docker images
db uses an image, skipping
Building web
Step 1/7 : FROM aldryn/base-project:py3-3.23
 ---> c0f7353db6c7
Step 2/7 : ENV PIP_INDEX_URL=${PIP_INDEX_URL:-https://wheels.aldryn.net/v1/aldryn-extras+pypi/${WHEELS_PLATFORM:-aldryn-baseproject-py3}/+simple/}     WHEELSPROXY_URL=${WHEELSPROXY_URL:-https://wheels.aldryn.net/v1/aldryn-extras+pypi/${WHEELS_PLATFORM:-aldryn-baseproject-py3}/}
 ---> Using cache
 ---> 7d0e665580f2
Step 3/7 : COPY requirements.* /app/
 ---> Using cache
 ---> 6de2503acd0c
Step 4/7 : COPY addons-dev /app/addons-dev/
 ---> Using cache
 ---> 36d866144ce1
Step 5/7 : RUN pip-reqs compile &&     pip-reqs resolve &&     pip install         --no-index --no-deps         --requirement requirements.urls
 ---> Using cache
 ---> 012d56b55012
Step 6/7 : COPY . /app
 ---> 44ca04bf2c80
Step 7/7 : RUN DJANGO_MODE=build python manage.py collectstatic --noinput
 ---> Running in 8f76702a142e
Failed to import the site module
Traceback (most recent call last):
  File "/virtualenv/lib/python3.5/site.py", line 703, in <module>
    main()
  File "/virtualenv/lib/python3.5/site.py", line 683, in main
    paths_in_sys = addsitepackages(paths_in_sys)
  File "/virtualenv/lib/python3.5/site.py", line 282, in addsitepackages
    addsitedir(sitedir, known_paths)
  File "/virtualenv/lib/python3.5/site.py", line 204, in addsitedir
    addpackage(sitedir, name, known_paths)
  File "/virtualenv/lib/python3.5/site.py", line 173, in addpackage
    exec(line)
  File "<string>", line 1, in <module>
  File "/virtualenv/lib/python3.5/site-packages/fix_certifi_hack.py", line 26, in <module>
    os.environ['REQUESTS_CA_BUNDLE'] = certifi.old_where()
AttributeError: module 'certifi' has no attribute 'old_where'
ERROR: Service 'web' failed to build: The command '/bin/sh -c DJANGO_MODE=build python manage.py collectstatic --noinput' returned a non-zero code: 1

--------------------------------------------------------------------------------

There was an error trying to run a command. This is most likely
not an issue with divio-cli, but the called program itself.
Try checking the output of the command above.
The command was:
  docker-compose -f /Users/charlie/Django_projects/divio-project/test-project3/docker-compose.yml build

以下是我遵循的步骤:

  1. 在 Divio 网站上添加了项目(Python 3.5.x,Wagtail,空白样板)
  2. 已为 Mac
  3. 下载并安装 Divio 桌面应用程序
  4. 打开添加的项目
  5. 单击了 "Setup"(本地服务器)
  6. 终端弹出,然后运行上面的代码
  7. 错误消息:错误:服务 'web' 构建失败:命令 '/bin/sh -c DJANGO_MODE=build python manage.py collectstatic -- noinput' 返回了一个非零代码:1

谢谢。

我遇到了同样的问题,看起来 Certifi 包中有一些代码已被弃用: https://pypi.org/project/certifi/#history

并在上周末发布了新版本。

要解决此问题,只需将以下内容添加到要求文件的底部,将您使用的软件包版本强制为 2018.10.15

certifi==2018.10.15

希望对您有所帮助。