Eclipse Android Plugin — libncurses.so.5

前端 未结 7 1037
失恋的感觉
失恋的感觉 2020-12-12 15:11

I am struggling mightily with installing ADT (Android Dev Tools) on Eclipse in Fedora 16 OS, 64-bit.

Eclipse itself is running fine.

As instructed, I first i

相关标签:
7条回答
  • 2020-12-12 15:56

    This solved the problem entirely:

    yum install ncurses-libs.i686 libstdc++.i686 libgcc.i686
    
    0 讨论(0)
  • 2020-12-12 15:57
    yaourt -S multilib/lib32-ncurses
    

    for ArchLinux

    0 讨论(0)
  • 2020-12-12 15:59

    You probably don't have libncurses5 installed. Try

    rpm --install ncurses-libs
    
    0 讨论(0)
  • 2020-12-12 16:04

    This tip from Tim Mattison's blog did it for me under Debian Wheezy:

    sudo apt-get install lib32ncurses5 lib32stdc++6
    
    0 讨论(0)
  • 2020-12-12 16:12

    had similar issue on centos:

    ./adb: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory

    did the following:

    yum install ncurses ncurses-devel ncurses-libs ncurses-libs.i686   ncurses-devel.i686 
    

    And the issue fixed.

    0 讨论(0)
  • 2020-12-12 16:14

    This is happening because Android SDK is a 32bit application and require some 32bit shared libraries,

    I had same issue on Ubuntu 64 bits, and fixed with:

    $ sudo apt-get install ia32-libs
    
    0 讨论(0)
提交回复
热议问题