致命错误:gl / glut.h:没有这样的文件或目录


18

我正在尝试编写程序,但不断出现此错误:

Fatal error: gl/glut.h: no such file or directory

我已经阅读了人们遇到的其他类似问题,但对我没有任何帮助。我该怎么做才能解决这个问题?

Answers:


26

在Ubuntu 13.10上,此文件位于freeglut3-dev软件包中。

$ sudo apt-get install freeglut3-dev

您还必须注意,C ++和Ubuntu都区分大小写。程序中正确的包含行是:

#include <GL/glut.h>

大写的“ GL”很重要。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.