Book Image

Python GUI Programming Cookbook

By : Burkhard Meier
Book Image

Python GUI Programming Cookbook

By: Burkhard Meier

Overview of this book

Table of Contents (18 chapters)
Python GUI Programming Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

PyOpenGL transforms our GUI


In this recipe, we will successfully create a Python GUI that imports PyOpenGL modules and does actually work!

In order to do so, we need to overcome some initial challenges.

This recipe will show one proven way that does work. If you experiment on your own and get stuck, remember the famous words from Thomas A. Edison.

Note

Thomas Edison, inventor of the light bulb, answered a question from a reporter who talked about Edison's failures. Edison replied:

"I have not failed. I've just found 10,000 ways that won't work."

First, we have to install the PyOpenGL extension module.

After successfully installing the PyOpenGL modules that match our OS architecture, we will create some example code.

Getting ready

We will install the PyOpenGL package. In this book, we are using Windows 7 64-bit OS and Python 3.4. The screenshot of downloads that follows is for this configuration.

We will also be using wxPython. If you do not have wxPython installed, you can read some recipes from...