为 python3-lxml build-dep 添加源 URI

Adding source URI for python3-lxml build-dep

我正在尝试 运行 以下命令:apt-get build-dep python3-lxml.

我得到以下输出:E: You must put some 'source' URIs in your sources.list

这是 cat /etc/apt/sources.list 的输出:

deb http://deb.debian.org/debian stretch main contrib non-free
#deb-src http://deb.debian.org/debian stretch main contrib non-free

deb http://deb.debian.org/debian stretch-updates main contrib non-free
#deb-src http://deb.debian.org/debian stretch-updates main contrib non-free

deb http://deb.debian.org/debian-security stretch/updates main contrib non-free
#deb-src http://deb.debian.org/debian-security stretch/updates main contrib non-free

#deb http://deb.debian.org/debian stretch-backports main contrib non-free
##deb-src http://deb.debian.org/debian stretch-backports main contrib non-free

#Kernel source (repos.rcn-ee.com) : https://github.com/RobertCNelson/linux-stable-rcn-ee
#
#git clone https://github.com/RobertCNelson/linux-stable-rcn-ee
#cd ./linux-stable-rcn-ee
#git checkout `uname -r` -b tmp
#
deb [arch=armhf] http://repos.rcn-ee.com/debian/ stretch main
#deb-src [arch=armhf] http://repos.rcn-ee.com/debian/ stretch main

几个问题:

  1. 我应该如何修改这个文件来添加源?
  2. 之后还需要运行apt update吗?
  3. 您怎么知道要添加什么 URI?

提前致谢!

1. 您可以使用任何文本编辑器编辑您的 /etc/apt/sources.list 文件。只需打开它并取消注释以 deb-src 开头的所需行(即删除 deb-src 前面的 #),保存并关闭它。

2. 是的,之后你将不得不 运行 apt update

3. 所需的 url 已存在于您的 sources.list 文件中。


这是关于 Debian sources.list, as well as some specific information about Archive Typesdebdeb-src)的官方文档。

这里有一些关于 Debian Repositories 的附加信息。