【解决】ffpmeg安装问题: No such file or directory @ rb_sysopen

home brew ffpmeg 时报错:

==> Pouring little-cms2-2.13.big_sur.bottle.tar.gz

Error: No such file or directory @ rb_sysopen - 某路径下--little-cms2-2.13.big_sur.bottle.tar.gz

说明丢失了little-cms2-2.13.big_sur.bottle.tar.gz

解决:

先安装little-cms2:

brew install little-cms2

再安装ffpmeg:

brew install ffpmeg

安装过程中缺什么就安装什么

直到安装成功为止~

升级

brew有许多不同的源,如中科大,清华,阿里;可以切换镜像的地址,各大源有整理好一些库,能提升下载的效率

查看当前源的方法:

cd "$(brew --repo)" && git remote -v

#github:官方
#ustc:中科大
#aliyun:阿里

切换方法:

cd "$(brew --repo)"
git remote set-url origin git://mirrors.ustc.edu.cn/brew.git
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin git://mirrors.ustc.edu.cn/homebrew-core.git
source ~/.bash_profile
brew update

切换后再执行 homebrew ffmpeg即可

你可能感兴趣的:(问题解决,brew)