当前位置:   article > 正文

无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包_无法安全地用该源进行更新,所以默认禁用该源。

无法安全地用该源进行更新,所以默认禁用该源。

我们安装软件的时候经常会出现无法安全地用该源进行更新,所以默认禁用该源 以及 E: 无法定位软件包

sudo apt install ros-noetic-gmapping
  • 1

在这里插入图片描述
后面才发现是我把 noetic 拼写错了!
在这里插入图片描述

2.设置安装源

官方默认安装源:

sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
  • 1

或来自国内清华的安装源

sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ros/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/ros-latest.list'
  • 1

或来自国内中科大的安装源

sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.ustc.edu.cn/ros/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/ros-latest.list'
  • 1

PS:

回车后,可能需要输入管理员密码
建议使用国内资源,安装速度更快。
  • 1
  • 2

3.设置key

sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
  • 1

4.安装

首先需要更新 apt(以前是 apt-get, 官方建议使用 apt 而非 apt-get),apt 是用于从互联网仓库搜索、安装、升级、卸载软件或操作系统的工具。

sudo apt update
  • 1

首先需要更新 apt(以前是 apt-get, 官方建议使用 apt 而非 apt-get),apt 是用于从互联网仓库搜索、安装、升级、卸载软件或操作系统的工具。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

rosdep update
  • 1

解决rosdep update一直timeout的问题
改域名服务器

如果出现类似如下错误的话。


reading in sources list data from /etc/ros/rosdep/sources.list.d
ERROR: unable to process source [https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/osx-homebrew.yaml]:
    <urlopen error [Errno 111] Connection refused> (https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/osx-homebrew.yaml)
ERROR: unable to process source [https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/base.yaml]:
    <urlopen error [Errno 111] Connection refused> (https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/base.yaml)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

打开终端(Ctrl+Alt+T)

**`sudo gedit /etc/resolv.conf`**
  • 1

将原有的nameserver这一行注释,并添加以下两行:

nameserver 8.8.8.8 # google域名服务器
nameserver 8.8.4.4 # google域名服务器
  • 1
  • 2

在这里插入图片描述

还不行的话,试试下面的!
删除源
cd /etc/apt/sources.list.d
ls
在这里插入图片描述
sudo rm ros-latest.list
ls
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/388439
推荐阅读
相关标签
  

闽ICP备14008679号