Big Sur - M1 Mac - Radian not starting anymore
See original GitHub issueAfter installing 4.1.1 (2021-08-10, aarch64-apple-darwin20 (64-bit)) radian is not starting anymore… 😦
radian
File "/Library/Frameworks/Python.framework/Versions/3.9/bin/radian", line 8, in <module>
sys.exit(main())
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/radian/__init__.py", line 101, in main
RadianApplication(r_home, ver=__version__).run(options)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/radian/radianapp.py", line 94, in run
rchitect.init(args=args, register_signal_handlers=True)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/rchitect/setup.py", line 46, in init
raise Exception(load_lib_error())
Exception: Cannot load shared library: dlopen(/Library/Frameworks/R.framework/Resources/lib/libR.dylib, 10): no suitable image found. Did find:
/Library/Frameworks/R.framework/Resources/lib/libR.dylib: mach-o, but wrong architecture
/Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/lib/libR.dylib: mach-o, but wrong architecture```
Issue Analytics
- State:
- Created 2 years ago
- Comments:13
Top Results From Across the Web
Does not start on M1 Macbook · Issue #271 · randy3k/radian
I installed successfully via pip3 install -U radian Starting from the console throws this error: Traceback (most recent call last): File ...
Read more >M1 MacBook Air/Pro Not Turning on, What to Do?
If your M1 Mac still won't boot after you've tried the above solutions, the system is probably heavily corrupted. You have to recover...
Read more >MAC M1 PRO I can't boot in startup option to reinstall macos.
In the Apple menu in the top left corner, click Restart.
Read more >[Fixed] Command + R Not Working Issue on Mac
Press and hold Option (Alt) + Command + R when starting a Mac. Release the keys once you see the Apple logo or...
Read more >RStudio and R will not start on Mac M1 OS X Monterey
I have R version 4.1. 2 for aarch64-apple-darwin20 and have tried the latest stable RStudio Build (2021.09. 1+372) as well as a daily...
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
There were a lot more listings in the
site-packages
.But the
pip uninstall radian
andpip install --no-binary :all: radian
worked!Radian is working again 😃 Thanks again for the help 😃
Is that listing all that you have in
site-packages
? I’d expect a bit more since radian has some dependencies. Maybe try to reinstall radian? and force no binaries.pip uninstall radian
pip install --no-binary :all: radian