在我的Podfile中添加此行后:
pod 'PiwikTracker', :git => 'https://github.com/manuroe/matomo-sdk-ios.git', :branch => 'feature/CustomVariables' 出现以下错误:
[!] /bin/bash -c
set -e
echo `pwd`
sed -i '' 's/include <\(cmark.*\)>/include "\1"/' src/cmark.h
mkdir -p build; cd build && cmake -G Xcode ..
/Users/mac1/Library/Caches/CocoaPods/Pods/Release/cmark/0.24.1-ec027
/bin/bash: line 4: cmake: command not found有人能帮我解决这个问题吗?
发布于 2020-06-15 01:35:15
使用Brew安装cmake
brew install cmake发布于 2019-08-29 14:41:47
运行以下命令进行安装:
sudo apt-get install build-essential cmake 发布于 2021-06-10 21:08:20
安装Brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"使用Brew安装cmake
brew install cmake https://stackoverflow.com/questions/52531492
复制相似问题