1

I am trying to install the toolchain for building Px4 on Linux.

I am facing the following error when I am giving the below command:

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

E: Unable to locate package python-empy

Log:

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:~$
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Neelesh I
  • 415
  • 1
  • 5
  • 14

1 Answers1

1

Try to do:

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

The problem is you are using the back slash "/" wrong. It is used for the target release.

developer_hatch
  • 15,898
  • 3
  • 42
  • 75