How to install Kivy by using pip on CMD

-1

I am beginner to develop Android and iOS using Kivy, installing these package these package got successfully installed.

python -m pip install --upgrade pip wheel setuptools
python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew
python -m pip install kivy.deps.gstreamer
python -m pip install kivy.deps.angle

When I install this package by using pip I got an error

python -m pip install pygame and pip install Kivy
[pkg-config.exe - Application Error The Application is enable to start correctly 0xc000007b][1]

And On Command Prompt screen Show

I have upload 1st and 8th image:

I have upload 1st and 8th image

This image is last image of error:

This image is last image of error

How can I solve this issue?

pip version pip -- 20.1.1
python version -- 3.8.0

I have also add this question on group google

python
python-3.x
windows
pip
kivy
asked on Stack Overflow Jul 5, 2020 by shivam dwivedi • edited Jul 7, 2020 by halfer

2 Answers

1

try using this. Worked for me in the same case.

pip install kivy[base] kivy_examples --pre --extra-index-url https://kivy.org/downloads/simple/

worked on python 3.8.2 both 32 and 64 bit, os: win10

answered on Stack Overflow Jul 5, 2020 by WebLab - group
0

Now i have solve this problem by change python version 3.6 it's working pe

answered on Stack Overflow Jul 8, 2020 by shivam dwivedi

User contributions licensed under CC BY-SA 3.0