I'm having trouble installing pymeshlab on my macbook air M2 2022. Do the newer macbook models support meshlab?
Thanks!
-Katie
pip3 install pymeshlab
ERROR: Could not find a version that satisfies the requirement pymeshlab (from versions: none)
ERROR: No matching distribution found for pymeshlab
According to this reply, PyMeshLab will not be supporting ARM architecture any time soon. Reply
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 updated my Arduino IDE to the latest ESP32 core but when compiling get the following error:
[3057] Error loading Python lib '/var/folders/nq/2hn7ngl12sl6qm83hf__7rvr0000gn/T/_MEISjMicX/libpython3.8.dylib': dlopen: dlopen(/var/folders/nq/2hn7ngl12sl6qm83hf__7rvr0000gn/T/_MEISjMicX/libpython3.8.dylib, 10): Symbol not found: ____chkstk_darwin
Referenced from: /var/folders/nq/2hn7ngl12sl6qm83hf__7rvr0000gn/T/_MEISjMicX/libintl.8.dylib (which was built for Mac OS X 11.0)
Expected in: /usr/lib/libSystem.B.dylib
in /var/folders/nq/2hn7ngl12sl6qm83hf__7rvr0000gn/T/_MEISjMicX/libintl.8.dylib
exit status 255
/private/var/folders/nq/2hn7ngl12sl6qm83hf__7rvr0000gn/T/AppTranslocation/7BDD5E08-7004-4B2A-8A25-28F75E6FCEE0/d/Arduino.app/Contents/Java/arduino-builder returned 255
Error compiling for board ESP32 Dev Module.
I tried to pip load the library terminal returned the following:
ERROR: Could not find a version that satisfies the requirement dy.lib (from versions: none)
System:
Mac OS X 10.13
Arduino 1.8
Try installing a previous version of ESP32 library from the board manager, it works for me!
I have bought an ESP32 Kit of the brand freenove. This ESP32 board is the ESP-Wrover-E with the following features:
Chip is ESP32-D0WD-V3 (revision 3)
Features: WiFi, BT, Dual Core, 240MHz, VRef calibration in efuse, Coding Scheme None
Crystal is 40MHz
When I tried to verify the board, I ran the blink example but got the same error.
The current setup of my system at the moment of getting the error was:
Computer: iMac 21.5" Mid 2011, 20 GB RAM
Operating System: Mac OS High Sierra, Version 10.13.6
IDE: Arduino 1.8.9
After search a diagnostic and solution for the error I have decided to follow the recommendation of the previous comment in this entry: "Try installing a previous version of ESP32 library from the board manager, it works for me!", and It works for me. And the following are the steps I have followed with some technical comments in the process
Diagnostic:
The problem is that the current ESP32 board library installed in my Arduino IDE is version 2.0.6 which is not compatible with the Mac OS High Sierra, Version 10.13.6. This is very clear in the error message: "... libintl.8.dylib (which was built for Mac OS X 11.0) ..."
Solution:
Update the Arduino IDE:
I have decided to upgrade the Arduino IDE from version 1.8.9 to the last version available version 2.0.4-nightly-20230216. This step does not solve the problem but, with this, you have a better and upgraded version of the boards and libraries software. The new version of Arduino IDE provides the ESP32 board library version 2.0.6 out of the box.
Downgrade ESP32 Board Library:
Finally, the error is solved by installing manually a previous version of the ESP32 Board Library, y my case I have installed version 1.0.6.
I have tried with all the ESP32 Board Library versions 2.0.5, 2.0.4, and 2.0.0, but none of the versions 2.X.X works properly. For me only version 1.0.6 works like a charm!!.
Blink Example working
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.
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
I tried to install tensorflow on my Mac OS X 10.10.5 (Yosemite) system, with Python 3.6. This failed with the message:
pip install tensorflow --user
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
There is of course a tensorflow 1.0.0 package on pypi. There is no requirement for macOS version number listed on that page, but the installable "whale" files have names like tensorflow-1.0.0-cp36-cp36m-macosx_10_11_x86_64.whl.
I suspect that the "10_11" notation means that one must have Mac OS X 10.11 "El Capitan" or higher to install, but I can't find a statement to that effect.
The Tensorflow Mac installation instructions are silent on macOS version requirements. They also direct us to ask installation questions here on SO. The optional nVidia CUDA library seems to require 10.11 or higher.
Can anyone give a definitive answer?