Migration from Intel Mac to M1 Mac: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - ": Image:Owl icon.jpg " to "{{Tips}} ")
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
Migration from Intel Mac to M1 Mac (OS architecture: Apple Silicon, linux/arm64/v8)
Migration from Intel Mac to M1 Mac
 
{{Tips}} Choose the app which support the OS architecture: Apple Silicon, linux/arm64/v8


== List of softwares ==
== List of softwares ==
Line 37: Line 39:


=== Homebrew ===
=== Homebrew ===
Upgrade [https://brew.sh/index_zh-tw macOS Homebrew]<ref>[https://osxdaily.com/2021/02/13/how-update-homebrew-mac/ How to Update Homebrew on Mac]</ref>
If the [https://brew.sh/index_zh-tw macOS Homebrew] was not installed, input  
* If the Homebrew was not installed, input {{kbd | key=<nowiki>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"</nowiki>}}
* {{kbd | key=<nowiki>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"</nowiki>}}
* {{kbd | key=brew update}} to update Homebrew
* {{kbd | key=brew update}} to update Homebrew
* {{kbd | key=brew upgrade}} to update Homebrew packages
* {{kbd | key=brew upgrade}} to update Homebrew packages
If you copy Homebrew files from Intel Mac
* follow the instruction on <ref>[https://earthly.dev/blog/homebrew-on-m1/ Using Homebrew on M1 Mac - Earthly Blog]</ref>


=== Tensorflow ===
=== Tensorflow ===
* [https://developer.apple.com/metal/tensorflow-plugin/ Tensorflow Plugin - Metal - Apple Developer]
* [https://developer.apple.com/metal/tensorflow-plugin/ Tensorflow Plugin - Metal - Apple Developer]<ref>[https://errerrors.blogspot.com/2022/03/blog-post_22.html 解決 Mac M1 安裝 Tensorflow 後,遇到 Library not loaded: @rpath/libcblas.3.dylib]</ref>


== Further reading ==
== Further reading ==

Latest revision as of 20:17, 8 January 2025

Migration from Intel Mac to M1 Mac

Owl icon.jpg Choose the app which support the OS architecture: Apple Silicon, linux/arm64/v8

List of softwares[edit]

Docker Desktop[edit]

Reinstall the app which not support intel processor e.g.


Git[edit]

Upgrade Git command[1][2][3]

  • which git to find the location where git was installed
  • (optional) brew uninstall git
  • (optional) brew install git
  • /usr/local/bin/git --version to verify the path is working
  • vi ~/.zshrc and add this line alias git='/usr/local/bin/git'

Example output of /usr/local/bin/git --version

git version 2.35.1


Download & install the Command Line Tools for Xcode 13.2.

Example output of /usr/bin/git --version

git version 2.32.0 (Apple Git-132)


Homebrew[edit]

If the macOS Homebrew was not installed, input

  • /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  • brew update to update Homebrew
  • brew upgrade to update Homebrew packages

If you copy Homebrew files from Intel Mac

  • follow the instruction on [4]

Tensorflow[edit]

Further reading[edit]

References[edit]