Eclipse ADT Unexpected exception 'Cannot run program'

后端 未结 5 2244
终归单人心
终归单人心 2021-02-09 02:32

I have installed ADT Bundle on my laptop. I have ubuntu 13.10 but when I open the ADT I see this message:

Unexpected exception \'Cannot run program \"/home/.../D         


        
相关标签:
5条回答
  • 2021-02-09 03:00

    If you're on ubuntu 13.10 (and possibly other versions >= 12.10), you may need to install

    sudo apt-get install lib32ncurses5 lib32stdc++6 zlib1g:i386 libc6-i386
    

    in stead. ia32-libs is no longer available on 13.10

    0 讨论(0)
  • 2021-02-09 03:05

    I think you have to install: IA32 library

    You can test this command: apt-get install ia32-libs

    0 讨论(0)
  • 2021-02-09 03:09

    I am using Ubuntu 14.04 LTS 64-bit and the following code works for me:

    sudo apt-get install lib32z1 lib32z1-dev
    
    0 讨论(0)
  • I faced the same problem but after re-extracting the ADT file,this message disappeared.

    Working on Ubunto 13.10 , The ADT file name (adt-bundle-linux-x86_64-20131030.zip)

    0 讨论(0)
  • 2021-02-09 03:11

    Its documented in Android's Setting Up an Existing IDE page, click on the Troubleshooting Ubuntu link. For Ubuntu 13.10 (Saucy Salamander) and newer you need to add these packages:

    sudo dpkg --add-architecture i386
    sudo apt-get update
    sudo apt-get install libncurses5:i386 libstdc++6:i386 zlib1g:i386
    
    0 讨论(0)
提交回复
热议问题