命令 "sudo apt-get install python-dev, python3-dev" 失败并以 100 退出

The command "sudo apt-get install python-dev, python3-dev" failed and exited with 100 during

好像

    sudo apt-get install build-essential

工作得很好,但是在安装 python-pip 时出现错误。

Here's the log of the failed build.

尝试在单独的命令中下载它们,或者删除逗号并仅 space 分开。您的系统认为您正在尝试安装名为 "python-dev,"

的软件包

根据您的错误日志,主要问题是 apt-get 正在解释您试图安装带有逗号的单独软件包作为 python-dev 名称的一部分。要使用 apt-get 安装多个包,只需用 space.

将它们分开

但是,根据 chat 中的持续讨论,您的 travis 构建似乎仍然失败,因为您在配置中遇到了其他问题。 python3 的 pip 等某些软件包未正确命名。