Hard Time Installing Ia32-Lib on MAC Osx

Hard time installing ia32-lib on mac osx

OK:

1) You've got two threads open on the same question:

  • Hard time installing ia32-lib on mac osx

  • Android: Failed to create SD card

2) More to the point, I honestly think you're barking up the wrong tree.

I don't think you somehow need to get ia32-libs installed on Mac OSX. Heck, I don't even know if there is an ia32-libs for Mac OSX. Yes, It's necessary on some 64-bit Linux platforms. AFAIK, it is not necessary on 64-bit Mac OSX. Honest!

3) Please look at these links:

  • http://www.buzztouch.com/files/howtos/Setting_Up_Your_Android_Development_Environment_For_MacOSX_v1.0.pdf

  • android dev on 64-bit mac

  • http://relentlessinquiry.com/2011/03/02/how-i-built-my-mac-os-x-android-development-environment/

  • http://marakana.com/support/android_setup.html

How to install ia32-libs in Ubuntu 14.04 LTS (Trusty Tahr)

You can try this to install the 32-bit library (not all in ia32-libs):

sudo  apt-get install program:i386

sudo dpkg --add-architecture i386 may be required (if you haven't ever run that).


Or if you want to install the whole ia32-lib instead, try the following order:

sudo -i
cd /etc/apt/sources.list.d
echo "deb http://old-releases.ubuntu.com/ubuntu/ raring main restricted universe multiverse" >ia32-libs-raring.list
apt-get update
apt-get install ia32-libs

PS: In this way, you can install ia32-libs. However, we add the source of 13.04 instead, so, there may be some unknown problem. After installing ia32-libs, I recommend you to remove the ia32-libs-raring.list in /etc/apt/sources.list.d, and do sudo apt-get update.


If you want to fix the dependency of Android SDK, you can try this bellow:

sudo apt-get install -y libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 lib32z1

Not able to globally install electron on MacOS due to error

For some reason I don't know, your npm tries to install Electron with the ia32 architecture, resulting in a downloadable zip file which is not provided by the Electron maintainers. That's why you're getting a 404 HTTP status code.

Going back in Electron's releases page, I cannot seem to find any darwin-ia32 assets (darwin is the codeame for macOS).

You can try forcing npm to install the appropriate architecture using

npm install --arch=x64 electron

as suggested in Electron's installation guide.

Can't install Quartus II 13.0 SP1 on RedHat 6

On Redhat you should consider using rpm instead of apt-get or yum.

The packages to install are listed in the altera support site:

glibc.i686, libXext.i386, libX11.i386, libXau.i386, libXdmcp.i386, freetype.i386, fontconfig.i386, and expat.i386.

android dev on 64-bit mac

The Android development will be in fact in 32 bits but Mac OS X is intelligent enough to run 64 bits and 32 bits binary on a 64 bits processor. You will not have any problem.

Android Studio Installation -Unable to run mksdcard SDK tool. on 32 bit Ubuntu 12.10

For me the answer was here http://tools.android.com/tech-docs/linux-32-bit-libraries

At the time of this answer, the required libraries are

$ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1

Good luck!



Related Topics



Leave a reply



Submit