1.Python的安装请参照
Anconda安装_安装anconda_lwb-nju的博客-CSDN博客anconda安装教程_安装ancondahttps://blog.csdn.net/lwbCUMT/article/details/125322193?spm=1001.2014.3001.5501
Anconda换源+虚拟环境创建及使用(界面操作)_anconda huanyuan_lwb-nju的博客-CSDN博客anconda简单使用_anconda huanyuanhttps://blog.csdn.net/lwbCUMT/article/details/125322702?spm=1001.2014.3001.5501
2.OpenGL包的准备
使用pip和conda install安装时会出现各种各样的报错
如:OpenGL.error.NullFunctionError: Attempt to call an undefined function glutInit, check for bool(glutInit) before calling
大佬都说是32位和64位不匹配,所以需要自己先下载好匹配的opengl包,这里我下载的是tar.gz格式的,whl格式的安装后还是不能用,不知道为什么。下载地址:PyOpenGL -- The Python OpenGL Bindinghttps://pyopengl.sourceforge.net/
解压后备用
3.安装OpenGL包
cd xxdir #进入目标文件夹
python setup.py install #安装
安装过程中可能会报错:error: Microsoft Visual C++ 14.0 or greater is required. Get it with “Microsoft C++ Build Tools“:
根据提示下载一下C++组件后,再重新安装。
4.测试
from OpenGL.GL import *
from OpenGL.GLU import *
from OpenGL.GLUT import *
def drawFun():
glClear(GL_COLOR_BUFFER_BIT)
glutWireTeapot(0.5)
glFlush()
glutInit()
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGBA)
glutInitWindowSize(400,400)
glutCreateWindow(b"hhh")
glutDisplayFunc(drawFun)
glutMainLoop()
技术支持可以mou鱼 搜索GEEDOWNLOAD