Я пытался установить KIVY для python 3.8.1 на windows 10, и у меня есть эта ошибка - PullRequest
0 голосов
/ 11 января 2020

Я попытался установить kivy для python 3.8.1 на windows 10, и у меня возникла эта ошибка.

ERROR: Dependency for context.pyx not resolved: config.pxi
ERROR: Dependency for compiler.pyx not resolved: config.pxi
ERROR: Dependency for context_instructions.pyx not resolved: config.pxi
ERROR: Dependency for fbo.pyx not resolved: config.pxi
ERROR: Dependency for gl_instructions.pyx not resolved: config.pxi
ERROR: Dependency for instructions.pyx not resolved: config.pxi
ERROR: Dependency for opengl.pyx not resolved: config.pxi
ERROR: Dependency for opengl_utils.pyx not resolved: config.pxi
ERROR: Dependency for shader.pyx not resolved: config.pxi
ERROR: Dependency for stencil_instructions.pyx not resolved: config.pxi
ERROR: Dependency for scissor_instructions.pyx not resolved: config.pxi
ERROR: Dependency for texture.pyx not resolved: config.pxi
ERROR: Dependency for vbo.pyx not resolved: config.pxi
ERROR: Dependency for vertex.pyx not resolved: config.pxi
ERROR: Dependency for vertex_instructions.pyx not resolved: config.pxi
ERROR: Dependency for cgl.pyx not resolved: config.pxi
ERROR: Dependency for cgl_mock.pyx not resolved: config.pxi
ERROR: Dependency for cgl_gl.pyx not resolved: config.pxi
ERROR: Dependency for cgl_glew.pyx not resolved: config.pxi
ERROR: Dependency for cgl_sdl2.pyx not resolved: config.pxi
ERROR: Dependency for svg.pyx not resolved: config.pxi
----------------------------------------

ОШИБКА: команда завершилась ошибкой с состоянием выхода 1: python setup. py egg_info Проверьте журналы для полного вывода команды.

Ответы [ 2 ]

1 голос
/ 28 апреля 2020

Об этом говорится в выпусках Github проекта Kivy: https://github.com/kivy/kivy/issues/6563

Типп от KiaraKarla: kiarakarla прокомментировал 15 De c 2019 Мы не являемся вероятно выпустить версию 1.11.1 для 3.8 до pypi. Тем не менее, вы можете установить kivy master с помощью pip install kivy [base] kivy_examples --pre --extra-index-url https://kivy.org/downloads/simple/.

Мне удалось получить Kivy работа с образцом под Win10 с Python 3.8.2

1 голос
/ 11 января 2020

Вы должны попробовать в python 3.7, Kivy может не обновляться в соответствии с 3.8. Или вы можете выполнить следующие действия, описанные в Как устранить ошибку установки Kivy в Python?

Удачи!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...