How to Set up Wing IDE for Kivy on Windows

I like to use Wingware’s IDE for coding in Python. I am working through some sample applications with Kivy, a cross-platform Python GUI framework that can also create UIs for mobile. Anyway, getting Kivy set up in Wing is slightly confusing, so here’s a crash course:

  1. Download Kivy
  2. Unzip Kivy somewhere. In my case, I unzipped it here: C:\kivy1.7.2\
  3. Run kivy.bat which is in the directory you unzipped to. You should see something like the following

kivy_bat

Now we’re ready to open up Wing. Once you have that open, start a new project. Then go to the Project menu and choose the Project Properties option, which is at the very bottom of the list. You should see something like the following:

kivy_wing

Set the Python Executable option to your Kivy’s Python, which in my case was: c:\kivy1.7.2\Python\python.exe

Set the Python Path to C:\kivy1.7.2\kivy (or modify to match where you extracted Kivy to).

At this point, you should be able to import kivy in your environment, but you won’t be able to actually execute your kivy scripts. To get past that, you need to go to the bottom section of the Project Properties dialog and change the Environment setting drop-down to Add to inherited environment. Finally, you’ll want to copy the PATH information from the kivy.bat screen that you saw above into the textbox below the Environment setting. In my case, it looked something like this:


PATH=C:\kivy1.7.2\;C:\kivy1.7.2\Python;C:\kivy1.7.2\Python\Scripts;C:\kivy1.7.2\gstreamer\bin;C:\kivy1.7.2\MinGW\bin;C:\Python26\Lib\site-packages\PyQt4;C:\Python27\Lib\site-packages\PyQt4;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Intel\Services\IPT\;C:\Program Files (x86)\IBM\Client Access\Emulator;C:\Program Files (x86)\IBM\Client Access\Shared;C:\Program Files (x86)\IBM\Client Access\;C:\Python26;C:\Python26\Scripts;C:\Program Files\TortoiseSVN\bin;C:\Program Files\SlikSvn\bin;C:\Program Files (x86)\Calibre2\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\PROGRA~1\IBM\SQLLIB\BIN;C:\PROGRA~1\IBM\SQLLIB\FUNCTION;C:\Program Files (x86)\Git\cmd;C:\Program Files (x86)\Mercurial;C:\MinGW\bin

Except that it should all be on one line. Otherwise Wing will complain that each variable must be be in a var=value pair. Once you’ve got all this done, you can run a kivy script from within Wing. This circumvents the need to drag a Python file onto kivy.bat to run a kivy program.

4 thoughts on “How to Set up Wing IDE for Kivy on Windows”

  1. Pingback: Mike Driscoll: How to Set up Wing IDE for Kivy on Windows | The Black Velvet Room

  2. If you have any questions about Kivy, drop by #kivy on Freenode. There is almost always someone who can help.

  3. I hope you won’t mind my replying but I just wanted to note that Kivy requires Python to be installed whereas Qt (I’d like to add the Juce framework to that list too) compiles to native code without such dependencies.

    Requiring Python isn’t necessarily an issue, it just depends on your target audience and what not.

  4. I’m late to the kivy party, but I don’t think there’s a kivy.bat any more. I’m using kivy version 1.10.0
    What I’m looking to do is be able to set up wingide so I can edit the .kv file, but when I press “run” it saves my .kv file
    but runs my original .py file.

    If I figure this out, I’ll be back, because I do like the WingIDE, and kivy looks like fun.

Comments are closed.