Python安装PyOpenGL

Posted feiquan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python安装PyOpenGL相关的知识,希望对你有一定的参考价值。

1.目前PyOpenGL是用python2写的,如果你使用的是python3需要自己修改PyOpenGL,我这里使用的是python2.7

2.下载PyOpenGLhttps://pypi.org/project/PyOpenGL/3.1.0/#modal-close,下载对应系统版本的就可以

  技术图片

 

3.运行exe或者setup

4.测试 茶壶

from OpenGL.GL import *
from OpenGL.GLU import *
from OpenGL.GLUT import *

def Draw():
    glClear(GL_COLOR_BUFFER_BIT)
    glRotatef(0.5, 0, 1, 0)
    glutWireTeapot(0.5)
    glFlush()

glutInit()
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGBA)
glutInitWindowSize(400, 400)
glutCreateWindow("test")
glutDisplayFunc(Draw)
glutIdleFunc(Draw)
glutMainLoop()

if __name__ == __main__:
    Draw()

5.运行报错(这是因为没有权限导致的

技术图片

6.将2中下载的PyOpenGL-3.1.0.zip解压,将\\OpenGL\\DLLS文件夹复制到Python27\\Lib\\site-packages\\OpenGL

7.重新运行测试文件,通过

技术图片

8.如果你使用python3的环境去运行,会报错,需要你使用2to3或者six模块,将python2的代码转化为python3的

 

以上是关于Python安装PyOpenGL的主要内容,如果未能解决你的问题,请参考以下文章

python安装步骤

python安装教程(mac版)-python安装步骤

怎么安装python 安装python步骤

如何安装python

怎样手动安装python的包

windows安装python 和 linux安装python