Cannot install latch via pip on M1 macs
See original GitHub issuepython3 -m pip install latch
or pip install latch
with Docker running on an M1 mac result in the following error where numpy fails to install. Tried fixing using pip install -U wheel
and pip install -U setuptools
, but it does not work.
`
Similar to issue #43
Issue Analytics
- State:
- Created a year ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Pip install doesn't work on m1 Mac - Super User
I tried installing it with ensurepip as well as with the official get-pip.py script. With the official installation script I get a warning:...
Read more >trouble installing on apple silicon M1 · Issue #13409 · scipy/scipy
I'm having some issues installing scipy on my M1 Macbook Air. ... khuynh@kmba:~ $ python3 -m pip install scipy Collecting scipy Using cached ......
Read more >Issues with pipenv install on M1 Mac for python dependencies
Try to make the repo work with ARM architecture. I've tried using python 3.8.10 instead of 3.8.7 since that is the latest version...
Read more >mac m1 compiling python packages failure - Apple Developer
I tried to install some python packages using pip, which always failed when the package need to be compiled. For example, running "pip...
Read more >How to Install PIP on a Mac - groovyPost
Open the Mac Terminal app via the Launchpad. · In the Terminal, type python -m ensurepip or python3 -m ensurepip and press Enter....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks @kennyworkman, this fix worked! In case this fix doesn’t work for other users on M1 macs, try adding Python 3.8 to your path like this
export PATH=/Users/<username>/Library/Python/3.8/bin:$PATH
. I was able to runlatch init
after this.pushed a patch release versioned
v0.9.2
that strippedpyarrow
from the dependency list. can you try installing that?