Installing Kivy in Anaconda

2019-03-30 11:32发布

I am trying to install Kivy in Anaconda 3 4.1.1 in Windows 7. But I couldn't find a proper user guide to instruct me how to do so. But so far I was able to find instructions to install it on OS X on the link https://github.com/kivy/kivy/wiki/Connecting-Kivy-with-Anaconda-(OSX). But I couldn't find a one for Windows operating systems.

Can anyone provide me with instructions on how to install Kivy in Anaconda?

2条回答
太酷不给撩
2楼-- · 2019-03-30 12:06

Use anaconda search for search the package names and conda install to install:

anaconda search -t conda kivy

For Windows:

conda install -c krisvanneste kivy=1.8.0

For Linux:

conda install -c moritzimend kivy=1.9.0 

For Mac:

conda install -c akode kivy=1.9.1 
查看更多
贪生不怕死
3楼-- · 2019-03-30 12:09
conda install --channel https://conda.anaconda.org/jiayi_anaconda kivy

this will work fine.

查看更多
登录 后发表回答