mac安装ruby失败,运行'__rvm_make -j 4'时出错

tzxcd3kk  于 2022-11-29  发布在  Ruby
关注(0)|答案(2)|浏览(654)

当我在终端中执行“rvm install 2.7.2”时,我在运行“__rvm_make -j 4”时出现错误,如果有人能提供帮助,我将不胜感激

gojuced7

gojuced71#

使用macOS BigSur也有同样的问题,这对我很有效:

CFLAGS="-Wno-error=implicit-function-declaration" rvm install x.x.x
idv4meu8

idv4meu82#

这对我很有帮助:https://github.com/rvm/rvm/issues/5043#issuecomment-967000943
副本如下:
1.右键单击“应用程序/实用工具”文件夹中的“终端”,然后单击“显示简介”,勾选“使用Rosetta打开”框。
1.卸载自制软件

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
rm -rf /opt/homebrew/*
sudo rm -rf /opt/homebrew

1.重新安装Homebrew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

1.重新启动终端
1.检查Homebrew是否正常工作:brew doctor
1.重新安装openssl:brew install openssl
1.安装Ruby:rvm install 2.7或任何版本

相关问题