2017-06-16 163 views
-2

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

在此先感谢。

回答

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.