找不到Kivy安装命令

时间:2017-06-16 07:33:56

标签: python windows cmd kivy

我想在Windows 10上安装kivy,它首先要说的是我应该在cmd上键入python --version。所以,我做了它,它只说命令' python'没有找到/写错了或类似的东西(但是用德语,因为我是德国人)。有谁知道如何解决这个问题?我已经尝试安装kivy 3个小时了。

提前致谢。

1 个答案:

答案 0 :(得分:0)

That kind of installing python modules only works when the package is suitable with the version of python you are using. And if it is saying python not found you may have to set a path in cmd to where your python is located. First type python and if no error pops out that means it is now recognized. Now set a path to the script pip.py that is used for installing python modules. you can set it as e.g
set path='%PATH%';c:\type the python path\scripts
once that is done then
 type pip install kivy
hope that works for you.    
相关问题