Python 源代码在哪里?(pyqtdeploy 中需要)

Python 源代码在哪里?(pyqtdeploy 中需要)

显然我需要 python 源代码(使用 pyqtdeploy:Locations->Host Python Locations->Source Directory 不能为空)。正如 medigeek 在'Python 源代码在哪里?' 我可以

apt-get source python

但实际问题仍未得到解答:源在哪里(放在哪个目录中)?

答案1

来自apt-get手册页

   source
       source causes apt-get to fetch source packages. APT will examine the available packages to decide which source package to fetch. It will then find and download into the current directory the
       newest available version of that source package while respecting the default release, set with the option APT::Default-Release, the -t option or per package with the pkg/release syntax, if
       possible.

       Source packages are tracked separately from binary packages via deb-src lines in the sources.list(5) file. This means that you will need to add such a line for each repository you want to get
       sources from; otherwise you will probably get either the wrong (too old/too new) source versions or none at all.

       If the --compile option is specified then the package will be compiled to a binary .deb using dpkg-buildpackage for the architecture as defined by the --host-architecture option. If
       --download-only is specified then the source package will not be unpacked.

       A specific source version can be retrieved by postfixing the source name with an equals and then the version to fetch, similar to the mechanism used for the package files. This enables exact
       matching of the source package name and version, implicitly enabling the APT::Get::Only-Source option.

       Note that source packages are not installed and tracked in the dpkg database like binary packages; they are simply downloaded to the current directory, like source tarballs.

正如最后一行所示,它们被下载到当前工作目录。因此,如果你打开终端,它正在查看你的主目录,它将被下载到那里。

您可能希望先为源包下载创建一个子目录,然后进入该目录,然后运行命令并下载源包。

相关内容