Computer Graphics Programming, OpenGL using python

Published: 02 February 2022
on channel: MNS Tutorial
3,164
23

In this tutorial, you will learn how to prepare your system to using python to implement OpenGL programming.

Make sure you install python 3.8, since this is the latest python version that support installing pyOpenGL-accelerate via pip.

To Check your PowerShell if allow run scripts:
Get-ExecutionPolicy -List

You may need to run following command to allow your PowerShell to run custom scripts:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Create python environment:
python -m venv venv

Activate environment (PowerShell):
./venv/Scripts/Activate.ps1

Activate environment (Unix: macOS/Linux):
source ./venv/bin/activate

Deactivate environment (All platforms):
deactivate

Check installed packages:
pip list

Install required packages:
pip install numpy pygame pyopengl pyopengl-accelerate

The following repository is based on the book "Developing Graphics Frameworks with Python and OpenGL" by Lee Stemkoski and Michael Pascale:
https://github.com/ax-va/PyOpenGL-Pyg...


On this page of the site you can watch the video online Computer Graphics Programming, OpenGL using python with a duration of hours minute second in good quality, which was uploaded by the user MNS Tutorial 02 February 2022, share the link with friends and acquaintances, this video has already been watched 3,164 times on youtube and it was liked by 23 viewers. Enjoy your viewing!