Qiita Conference 2025

成瀬允宣 (@nrslib)

設計の本質:コード、システム、そして組織へ

1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows10 64bit Python3.5 へのKivyのインストール

Last updated at Posted at 2017-01-08

概要

Windows10 64bit Python3.5 へKivyをインストールした際のメモ.

環境

  • Windows 10 64bit
  • Anaconda 64bit
  • conda create -n py35 python=3.5で構築されたPython環境
    • pip 9.0.1
    • python 3.5.2
    • setuptools 27.2.0
    • vs2015_runtime 14.0.25123
    • wheel 0.29.0

Kivyのコンパイル済みWheel形式パッケージをダウンロード

conda install kivy, pip install kivyではエラーとなってしまいインストールできなかったので....

ダウンロードしたWheel形式パッケージをインストール

※%HOMEPATH%\Downloadsに保存しています.

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

補足

オフライン環境の場合、Kivyをインストールする際に自動的にKivy-Gardenをダウンロード&インストールしようとしてKivyのインストールに失敗するため、先に手動でKivy-Gardenのホイール形式パッケージをダウンロード&インストールしておく必要があるみたいです.

動作確認

https://kivy.org/ の example を実行してみます.

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

2017-01-08_16h45_28.png

1
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Qiita Conference 2025 will be held!: 4/23(wed) - 4/25(Fri)

Qiita Conference is the largest tech conference in Qiita!

Keynote Speaker

ymrl、Masanobu Naruse, Takeshi Kano, Junichi Ito, uhyo, Hiroshi Tokumaru, MinoDriven, Minorun, Hiroyuki Sakuraba, tenntenn, drken, konifar

View event details
1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?