qcreator编译出现: error: GL/gl.h: No such file or directory

这篇具有很好参考价值的文章主要介绍了qcreator编译出现: error: GL/gl.h: No such file or directory。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

 error: GL/gl.h: No such file or directory

该问题表示没有Opengl库,文章来源地址https://www.toymoban.com/news/detail-695900.html

​ #安装opengl
sudo apt-get install mesa-common-dev         

#提示源找不到资源
Err:1 http://mirrors.aliyun.com/ubuntu bionic-proposed/main amd64 libx11-dev amd64 2:1.6.4-3ubuntu0.5
  404  Not Found [IP: 218.24.90.216 80]
Ign:2 http://mirrors.aliyun.com/ubuntu bionic-proposed/main amd64 libx11-doc all 2:1.6.4-3ubuntu0.5
Err:2 http://mirrors.aliyun.com/ubuntu bionic-proposed/main amd64 libx11-doc all 2:1.6.4-3ubuntu0.5
  404  Not Found [IP: 218.24.90.216 80]
E: Failed to fetch http://mirrors.aliyun.com/ubuntu/pool/main/libx/libx11/libx11-dev_1.6.4-3ubuntu0.5_amd64.deb  404  Not Found [IP: 218.24.90.216 80]
E: Failed to fetch http://mirrors.aliyun.com/ubuntu/pool/main/libx/libx11/libx11-doc_1.6.4-3ubuntu0.5_all.deb  404  Not Found [IP: 218.24.90.216 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
 

#更换source.list

sudo vim /etc/apt/sources.list

#将源改为中国科学技术大学的源
deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial main multiverse restricted universe
deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-backports main multiverse restricted universe
deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-proposed main multiverse restricted universe
deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-security main multiverse restricted universe
deb http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-updates main multiverse restricted universe
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial main multiverse restricted universe
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-backports main multiverse restricted universe
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-proposed main multiverse restricted universe
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-security main multiverse restricted universe
deb-src http://mirrors.ustc.edu.cn/ubuntu-ports/ xenial-updates main multiverse restricted universe

#更新命令
sudo apt update


#继续安装
sudo apt-get install mesa-common-dev

#提示版本依赖不对
 The following packages have unmet dependencies:
 libx11-dev : Depends: libx11-6 (= 2:1.6.4-3ubuntu0.4) but 2:1.6.4-3ubuntu0.5 is to be installed
              Recommends: libx11-doc but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

 #解决版本问题
sudo apt install libx11-6=2:1.6.4-3ubuntu0.4



#创建软链接
sudo ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 libGL.so

​

到了这里,关于qcreator编译出现: error: GL/gl.h: No such file or directory的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 安装docker-compose出现错误html: No such file or directory syntax error near unexpected token `<‘ <head><t

    安装docker-compose出现 /usr/local/bin/docker-compose: line 1: html: No such file or directory /usr/local/bin/docker-compose: line 2: syntax error near unexpected token \\\' \\\'usr/local/bin/docker-compose: line 2: 502 Bad Gateway 错误 解决 重新安装docker-compose,国内的有些快捷方式有些是有问题的,可能短期内能够使用,时间长

    2024年02月12日
    浏览(43)
  • vscode 出现 No such file or directory 的解决办法(python tkinter)

    主要解决的问题是python在linux下包没办法安装的问题 Traceback (most recent call last): File “e:GithubPython-GUIPyQt-Fluent-Widgetsexamplesnavigationdemo.py”, line 202, in w = Window() File “e:GithubPython-GUIPyQt-Fluent-Widgetsexamplesnavigationdemo.py”, line 95, in init self.initWindow() File “e:GithubPython-GUIPyQt

    2024年02月10日
    浏览(33)
  • 【c++ debug】cmake编译报错 No such file or directory

      重要: (1)首先确认文件是否存在,不存在才会报no such file/directory (2)确认查找路径是否正确,搜索路径错了自然找不到目标文件,头文件就检查include_directories,库文件就检查target_libraries 1. 报错:error while loading shared libraries: libprotoc.so.24: cannot open shared object file: No s

    2024年02月01日
    浏览(61)
  • Vitis报错:fatal error: xxx.h: No such file or directory.

    Vivado、Vitis版本:2021.1 在编译工程时出现了一堆错误,第一个错误就是fatal error: xxx.h: No such file or directory. 报错的头文件并不固定,尝试调换头文件位置,发现是main.c第一个头文件。解决方法是在官网上看到的,归纳了一下放在这里,官网回答说这是一个版本BUG。 解决方法

    2024年02月11日
    浏览(48)
  • repo执行出现/usr/bin/env: ‘python’: No such file or directory问题

    下载 Repo 工具,并确保它可执行: 执行 repo version报错: 查看cygwin软件,python是自动安装在/usr/bin/python3.8。   要指定repo执行时使用的Python解释器,你可以修改repo脚本的第一行,也被称为\\\"shebang\\\"行。 在repo脚本文件的第一行,你可以使用以下格式来指定要使用的Python解释器路

    2024年02月05日
    浏览(45)
  • 解决Git配置error:could not lock config file....No such file or directory

    新安装git出现无法设置用户名和邮箱的方法。 $ git config --global user.name “用户名” $ git config --global user.email “邮箱” 当在git bash里设置用户名邮箱出现类似以下提示时的解决方法。 GIT error: could not lock config file C:/Users/FZQ/Desktop/%USERPROFILE%/…No such file or directory 这里说在我的电

    2024年02月06日
    浏览(56)
  • fatal error: opencv2/opencv.hpp: No such file or directory

    这是因为opencv头文件的路径中多了一个opencv4的文件夹:/usr/include/opencv4/opencv2 可以将opencv2文件夹链接到include文件夹下

    2024年02月11日
    浏览(45)
  • 运行命令出现错误 /bin/bash^M: bad interpreter: No such file or directory

    在系统上运行一个 Linux 的命令的时候出现下面的错误信息: -bash: ./build.sh: /bin/bash^M: bad interpreter: No such file or directory 这个是在 Windows 作为 WSL 的时候出的错误。 出现问题的原因在于脚本在 Windows 中使用的回车换行和 Linux 使用的回车换行不一样。 如果你的代码是在 Windows 下被

    2024年02月11日
    浏览(43)
  • Mac解决Error: No such file or directory @ rb_sysopen报错问题

    问题小记:在Mac上安装SVN是如果缺少相关依赖包,则会出现类似标题的报错信息 说明缺少相关依赖包,再次执行brew install apr命令安装相关依赖包。 最后再重新执行brew install subversion命令则可以成功安装。 通过brew list可查看当前的安装文件  

    2024年02月16日
    浏览(47)
  • fatal error: linux/compiler-gcc9.h: No such file or directory

    linux 找到README文件 mzh@DESKTOP-GITL67P:~$ gcc --version gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 Copyright (C) 2019 Free Software Foundation, Inc. This is free software; see the source for copying conditions.  There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   因为当前gcc版本是9.x, 找不到 compiler-gcc

    2024年02月09日
    浏览(50)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包