Un mémo lorsque Kivy est installé sur Windows10 64bit Python3.5.
conda create -n py35 python = 3.5
Conda install kivy
, pip install kivy
a généré une erreur et n'a pas pu être installé ...cmd.exe
>pip install %HOMEPATH%\Downloads\Kivy-1.9.1+sdl2-cp35-cp35m-win_amd64.whl
Processing %HOMEPATH%\downloads\kivy-1.9.1+sdl2-cp35-cp35m-win_amd64.whl
Collecting Kivy-Garden>=0.1.4 (from Kivy==1.9.1+sdl2)
Requirement already satisfied: requests in c:\program files\anaconda3\envs\py35\lib\site-packages (from Kivy-Garden>=0.1.4->Kivy==1.9.1+sdl2)
Installing collected packages: Kivy-Garden, Kivy
Successfully installed Kivy-1.9.1 Kivy-Garden-0.1.4
Dans un environnement hors ligne, lorsque vous installez Kivy
, vous essaierez automatiquement de télécharger et d'installer Kivy-Garden
et l'installation de Kivy
échouera. Il semble que vous deviez télécharger et installer.
pip install %HOMEPATH%\Downloads\Kivy_Garden-0.1.4-py2.py3-none-any.whl
Essayez d'exécuter l'exemple sur https://kivy.org/.
test.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()
python test.py
Recommended Posts