一、准备
APICloud Studio安装:https://www.apicloud.com/devtools
Xcode 安装:https://developer.apple.com/download/
安装SVN:http://www.pc6.com/mach/macsvn/
---推荐Versions 1.3 http://www.pc6.com/mac/116544.html或https://www.versionsapp.com/
二、问题
APICloud Studio 新建应用 错误:Can't locate SVN/Core.pm in @INC (you may need to install the SVN::Core module)
三、解决
sudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.18/darwin-thread-multi-2level/SVN /System/Library/Perl/Extras/5.18/SVN
sudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.18/darwin-thread-multi-2level/auto/SVN/ /System/Library/Perl/Extras/5.18/auto/SVN
出现问题:Operation not permitted
这是因为一些mac用户在升级系统之后,电脑启用了SIP(System Integrity Protection),增加了rootless机制,导致即使在root权限下依然无法修改文件,在必要时候为了能够修改下面的文件,我们只能关闭该保护机制
1)重启,过程中按住 command+R,进入保护模式
2)打开terminal终端,输入:csrutil disable
3)可以进行相应处理
4)恢复保护模式:同上 终端输入 csrutil enable
网友评论