0

https://github.com/edx/configuration/wiki/edX-Ubuntu-12.04-64-bit-Installationに従って EdX をインストールしようとしています

sudo ansible-playbook -c local ./edx_sandbox.yml -i "localhost"を実行して待つだけです。

次の ansible タスクでは常に失敗しました。

# Install the python modules into {{ edxapp_venv_dir }}
- name : install python base-requirements
  # Need to use shell rather than pip so that we can maintain the context of our current working directory; some
  # requirements are pathed relative to the edx-platform repo. Using the pip from inside the virtual environment implicitly
  # installs everything into that virtual environment.
  shell: >
    {{ edxapp_venv_dir }}/bin/pip install -i {{ COMMON_PYPI_MIRROR_URL }} --exists-action w --use-mirrors -r {{ base_requirements_file }}
    chdir={{ edxapp_code_dir }}
  environment: "{{ edxapp_environment }}"
  sudo_user: "{{ edxapp_user }}"
  notify:
    - "restart edxapp"
    - "restart edxapp_workers"
  when: not inst.stat.exists or new.stat.md5 != inst.stat.md5

では、なぜ失敗し、他の pip インストールは正常に機能しているのですか? タスクの変更を使用して同じ目標を達成できますか?

これは次のエラーを示しています。

***Traceback (most recent call last):
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/basecommand.py", line 122, in main status = self.run(options, args)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/commands/install.py", line 278, in run requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/req.py", line 1197, in prepare_files do_download,
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/req.py", line 1375, in unpack_url self.session,
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/download.py", line 546, in unpack_http_url resp = session.get(target_url, stream=True)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/_vendor/requests/sessions.py", line 395, in get return self.request('GET', url, **kwargs)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/download.py", line 237, in request     return super(PipSession, self).request(method, url, *args, **kwargs)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/_vendor/requests/sessions.py", line 383, in request resp = self.send(prep, **send_kwargs)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/_vendor/requests/sessions.py", line 486, in send r = adapter.send(request, **kwargs)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/_vendor/requests/adapters.py", line 387, in send raise Timeout(e)
Timeout: (<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x295a6d0>, 'Connection to pypi.python.org timed out. (connect timeout=15)')***
4

1 に答える 1

0

ここでの問題は、ミラーの値と、ミラーが見つからないことです。

{{ COMMON_PYPI_MIRROR_URL }}

その値は、edx-west/roles/common/defaults/main.ymlファイルの次の場所に設定されています。

COMMON_PYPI_MIRROR_URL: 'https://pypi.python.org/simple'

具体的には、最初に使用する他のミラーに変更してみます(ログhttpに問題がある可能性があるため):https

http://b.pypi.python.org/simple or
http://c.pypi.python.org/simple or
http://d.pypi.python.org/simple

また、プレイブックでオプションを省略してみることができます:

-i {{ COMMON_PYPI_MIRROR_URL }}

シェルのor 設定で十分であると彼らが言及しているドキュメントに従って。--use-mirrorsexport PIP_USE_MIRRORS=true

于 2014-04-28T22:03:01.313 に答える