1

我正在尝试安装用于在 Linux 上构建 Px4 的工具链。

当我给出以下命令时,我面临以下错误:

sudo apt-get install python-argparse git-core wget zip \ python-empy qtcreator cmake build-essential

E: 找不到包 python-empy

日志:

neelesh@neelesh-Lenovo-G580:~$ sudo apt-get install python-argparse git-core wget zip \ python-empy qtcreator cmake build-essential genromfs -y
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libpython2.7-stdlib' instead of 'python-argparse'
E: Unable to locate package  python-empy
neelesh@neelesh-Lenovo-G580:~$
4

1 回答 1

1

试着做:

sudo apt-get install python-argparse git-core wget zip python-empy qtcreator cmake build-essential -y

问题是您使用反斜杠“/”错误。它用于目标版本。

于 2017-05-27T01:45:12.460 回答