我需要在 Ubuntu 上安装哪些软件包才能编译 ruby-opengl?
我正在尝试使用 ruby-opengl 包,当我安装它时,编译器抱怨它找不到正确的头文件。我需要哪些 Ubuntu 软件包 (9.10) 才能完成这项工作?
I am trying to use the ruby-opengl package, when I install it the compliler complains that it cannot find the correct header files. What Ubuntu packages (9.10) do I need to make this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自 Hardy (8.04) 以来,
libopengl-ruby1.8
和libopengl-ruby1.9
都已存在于 ubuntu 的 Universe 存储库中。有什么理由让你绝对必须从源代码编译吗?如果是这样,您可以尝试运行 sudo aptitude build-dep libopengl-ruby1.9 或 sudo aptitude build-dep libopengl-ruby1.8 。那应该可以获取您需要的包。libopengl-ruby1.8
andlibopengl-ruby1.9
have both been in ubuntu's universe repository since Hardy (8.04). Is there a reason you absolutely must compile from source? If so, you could try runningsudo aptitude build-dep libopengl-ruby1.9
orsudo aptitude build-dep libopengl-ruby1.8
. That ought to grab the packages you need.