Python Forum
Kivy pip installation problem (windows 10)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Kivy pip installation problem (windows 10)
#1
I've been learning Python for about a month now, I've managed to successfully install a pip module before. I'd like to practice a bit of Kivy, but there is a problem installing it.

Happy to pay around $25/hour if anyone feels like they can sort it form me.

I'm running windows 10. Feel free to ask for more details if it will help you diagnose the issue
here's the error message I'm getting in the CMD:

Link to TXT file
Reply
#2
Use wheel from here.
Kivy do not mention that they support 3.8 yet,but i can do a test.
Kivy Wrote:Python 2.7 and 3.5 to 3.7 is supported

When wheel is download place it in Scripts folder(not sure if you have it in Windows Path yet),and do this.
C:\Python38\Scripts
λ pip install Kivy‑1.11.1‑cp38‑cp38‑win_amd64.whl
Downloading .....
Successfully installed Kivy-1.11.1 Kivy-Garden-0.1.4 certifi-2019.11.28 chardet-3.0.4 docutils-0.15.2 idna-2.8
pygments-2.5.2 requests-2.22.0 urllib3-1.25.7
A wheel contain all dependencies:
kivy Wrote:gstreamer for audio and video
glew and/or angle (3.5+ only) for OpenGL
sdl2 for control and/or OpenGL.

Test that it work,use root 3.8 folder now to avoid Path problems.
# test_kivy.py
from kivy.app import App
from kivy.uix.button import Button

class TestApp(App):
    def build(self):
        return Button(text='Hello World')

TestApp().run()
[Image: GMFMp2.png]

sebastian Wrote:Happy to pay around $25/hour if anyone feels like they can sort it form me.
On this forum is all free Wink
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question Need Help with Vehicle Routing Problem with Time Windows (VRPTW) in Python kasper321421312 1 554 Nov-10-2023, 08:19 PM
Last Post: snippsat
  Windows 10 Installation failing (0x80070005) AdaptedLogic 4 6,145 Dec-31-2020, 07:39 AM
Last Post: caleb_cruze
  Generate RPM package from a Python + Kivy application for an "offline" installation pruvosim 2 2,203 Jun-04-2020, 12:16 PM
Last Post: pruvosim
  installation problem mkgrtn 1 2,028 Apr-17-2020, 11:07 PM
Last Post: thirteendec
  portaudio installation on windows 10 nima 4 32,118 Dec-29-2018, 10:01 PM
Last Post: snippsat
  Anaconda on Windows 10: problem with Jupyter Notebook lupoalberto 8 13,054 Apr-18-2018, 08:08 AM
Last Post: lupoalberto
  [Python 3.6.4/Windows] Problem with module installation and SSL didier31 3 20,711 Feb-20-2018, 08:57 PM
Last Post: sparkz_alot
  Problem with python installation on Linino OldBikerPete 11 8,451 Aug-23-2017, 05:00 PM
Last Post: DeaD_EyE
  Python 3.6 installation on Windows 10 Python72 7 8,428 Jan-11-2017, 11:59 PM
Last Post: Python72
  Python 3.6.0 PyLauncher Installation on Windows 10 twv 6 13,078 Dec-26-2016, 09:05 PM
Last Post: sparkz_alot

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020