安装Homebrew被折腾小记

Homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。最近做短视频播放的App,开始时用了七牛的PLPlayer,而闻说基于FFMPEG的ijkplayer更热门,于是想探索一下,然而第一步安装homebrew就卡住了。

打开终端,输入:

/usr/bin/ruby -e"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

然而,终端一直报错:

fatal: cannot copy '/Library/Developer/CommandLineTools/usr/share/git-core/templates/hooks/fsmonitor-watchman.sample' to '/usr/local/Homebrew/.git/hooks/fsmonitor-watchman.sample': Permission denied

Failed during: git init -q

最终

//确保目录归属管理组

sudo chgrp -R admin /usr/local

//确保管理组可读

sudo chmod -R g+w /usr/local

安装成功,问题又来了

command not find...

翻阅各种博客,说是环境变量Path中没有路径/usr/local/bin

sudo vim .bash_profile //1.打开.bash_profile

export PATH=/usr/local/bin:$PATH  2.为PATH添加/usr/local/bin的路径

source .bash_profile 3.更新配置后的环境变量

测试命令是否能行

brew -v,搞掂吃碗面,能用了····折腾

你可能感兴趣的:(安装Homebrew被折腾小记)