Installing Kivy in Anaconda

前端 未结 3 1285
无人共我
无人共我 2021-02-09 15:59

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

相关标签:
3条回答
  • 2021-02-09 16:42

    Kivy now has official Anaconda releases on all platforms. You can install it with:

    conda install kivy -c conda-forge
    
    0 讨论(0)
  • 2021-02-09 16:45

    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 
    
    0 讨论(0)
  • 2021-02-09 16:51
    conda install --channel https://conda.anaconda.org/jiayi_anaconda kivy
    

    this will work fine.

    0 讨论(0)
提交回复
热议问题