I am a new programmer and I wanted to develop an app using python. I found kivy and wanted to download it. I am using Visual Studio as my development habitat and whenever I tried to download kivy, it just didn't. I opened the command prompt and did as the tutorials said. Typed "pip", nothing happened. This led me to modify my python 3.7.3. But as I clicked on modify, it showed me that I already selected pip. I didn't know what to do. It would be much appreciated if someone replies. Thank you.
Asked
Active
Viewed 102 times
2 Answers
0
Assuming that you are running CMD from windows:
- You may try
python -m pip --help
to get the usage help. - Just
pip
should show the help as well.
How to run Pip commands from CMD provides a brief explanation on pip with windows CMD
And kivy.org Installation on Windows may provide you with the CMD command to install it.
I hope that helps.

MagnusO_O
- 1,202
- 4
- 13
- 19
0
@MagnusO_O is right, but I would also like to mention that kivy isn't exactly tailored to new python developers... I would HIGHLY recommend that you start with pygame before you move on to kivy. Assuming that you have at least some grasp on python itself.
Pygame is MUCH simpler and more easy to understand than kivy. Assuming you have pip installed just type
pip install pygame
into cmd and let it download and you now have access to all of pygame.
Here are just a few guides for new devs and the docs

loukylor
- 38
- 3