I am using rush and trying to run rush install in a project I cloned from one of my company's repositories. But, it fails by throwing the following error:
The chromium binary is not available for arm64:
If you are on Ubuntu, you can install with:
apt-get install chromium-browser
Note: I'm using iTerm2 terminal for all this running on an Apple Macbook Pro having Monterey as the OS, powered by the Apple M1 Pro chip.
PS I tried to look for answers o'er the web and found this post but the answer doesn't seem to work for me.
As mentioned previously, this is due to the new M1 chips. I've been able to resolve the issue by using node v15. Could try nvm use 15 from the command line in your project directory.
Related
MacBook Pro (13-inch, M1, 2020)
macOS Monterey 12.6
When I try to install LightGBM (via pip) I get the error:
Exception: Please install CMake and all required dependencies first
I already tried installing it via brew as well and it didnt work
I went through a few different tutorials in the web where you clone a directory from somewhere and build it from there but i ran into different errors there as well.
Has anyone had a similar experience and an idea what to do?
I tried many things, but none of them worked. It worked only after using the code below.
pip install lightgbm --install-option=--nomp
Hope it will work for you as well
I'm trying to install hyperkit on MacOS 12.1 M1 Silicon and I get the following error.
% brew install hyperkit
Error: hyperkit: no bottle available!
You can try to install from source with:
brew install --build-from-source hyperkit
Please note building from source is unsupported. You will encounter build
failures with some formulae. If you experience any issues please create pull
requests instead of asking for help on Homebrew's GitHub, Twitter or any other
official channels.
With some research I found an incompatibility with M1 Silicon processors M1 Compatibility Issue.
Is there a workaround for this?
I want to setup minishift on M1 Silicon and Hyperkit is a pre-requisite on MacOS.
M1 chip doesn't support hyperkit.
Tried virtualization using Kind.
I don't know about minishift, but for minikube, qemu works fine
https://minikube.sigs.k8s.io/docs/drivers/qemu/
Apparently hyperkit is not available for mac m1/m2. ARM chips.
So, I used qemu.
Install qemu using:
brew install qemu
Run
minikube start --driver=qemu
so I am having issues with Rosetta, and whenever I want to do any install or use a makefile, I get this error:
rosetta error: /var/db/oah/c642c66595f5050af26db8f86497ea83caff7cea5a9bcb2361ffa81d0e090b58/e3dffc0922c5d9c2da11a427e8274cb75a79f184276373ffc39b65cfa67f4141/libxcrun.dylib.aot: attachment of code signature supplement failed: 1
I am using the newest MacBook Pro M1. Installed using the softwareupdate --install-rosetta.
I can't find anything about it using google, what could be wrong here?
I am unable to install hyper kit on my mac. I am issueing the command brew install hyperkit from the terminal . the following is the logs result
Kjango-MacBook-Air:~ kanan$ brew install hyperkit
Warning: You are using macOS 10.12.
We (and Apple) do not provide support for this old version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
old version.
hyperkit: A full installation of Xcode.app 9.0 is required to compile
this software. Installing just the Command Line Tools is not sufficient.
Xcode can be installed from the App Store.
Error: An unsatisfied requirement failed this build.
Appreciate if you can help me to resolve.
thank you
I have upgraded to the mac os catalina .
then i was able to install it
I have Lenovo Ideapad310 laptop with Ubuntu OS. But for iOS development I want to install Xcode in my machine, so how can i install Xcode in my machine?
please anyone help me??
First: You can't install Xcode on Ubuntu it's restricted only for Mac OS.
Second: I assume you want Swift, which you can install it over terminal using this command
sudo apt-get install clang
If you installed the Swift toolchain on Linux to a directory other than the system root, you will need to run the following command, using the actual path of your Swift installation:
export PATH=/path/to/Swift/usr/bin:"${PATH}"
You can verify that you are running the expected version of Swift by entering the swift command and passing the --version flag:
swift --version
for IDE you might use Visual Studio Code and install Swift plugin.
Good Luck