Cài đặt Ruby trên M1 Mac

Thỉnh thoảng việc cài đặt Ruby trên M1 Macs như là một cơn ác mộng. Chúng ta sẽ mất rất nhiều thời gian để có thể tìm được giải pháp nhưng cuối cùng mọi thứ vẫn không work.

Dưới đây là một giải pháp nhanh chóng với bạn có thể thử với những dòng command

Bash
brew install [email protected]

export PATH="$(brew --prefix)/opt/[email protected]/bin:$PATH"
export LDFLAGS="-L$(brew --prefix)/opt/[email protected]/lib"
export CPPFLAGS="-I$(brew --prefix)/opt/[email protected]/include"
export PKG_CONFIG_PATH="$(brew --prefix)/opt/[email protected]/lib/pkgconfig"

rvm autolibs disable

export RUBY_CFLAGS=-DUSE_FFI_CLOSURE_ALLOC
export optflags="-Wno-error=implicit-function-declaration"

rvm install 3.2.2 --with-openssl-dir=$(brew --prefix)/opt/[email protected]

Nếu đã chạy các command ở trên vẫn không được hãy thử dụng tuyệt chiêu cuối cùng với command

Bash
arch -x86_64 rvm install 3.2.2 -j 1

Tôi cũng đang sử dụng M1 và mọi thứ đã work đối với tôi.

0 Shares:
Leave a Reply

Your email address will not be published. Required fields are marked *

You May Also Like