Questions tagged «homebrew»

在OS X上安装命令行Unix应用程序和工具的系统。免费和开源。


2
如何使用bash作为默认shell
我正在使用bash版本3.x运行El Capitan 10.11.3,因此我决定通过以下方式更新bash: brew install bash Brew将新的bash放在/ usr / local / Cellar / bash下: brew info bash bash: stable 4.3.42 (bottled), devel 4.4-beta, HEAD Bourne-Again SHell, a UNIX command interpreter https://www.gnu.org/software/bash/ /usr/local/Cellar/bash/4.3.42 (59 files, 7.3M) * Poured from bottle From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/bash.rb ==> Dependencies Required: readline ✔ ==> Caveats In order …
21 macos  bash  homebrew 


3
酿造桶:如何卸载应用程序
我在/ opt / homebrew-cask / Caskroom时尝试过 $ for i in *; do brew cask uninstall $i; done Error: appcleaner is not installed Error: avidemux is not installed Error: eclipse-ide is not installed Error: flash is not installed Error: silverlight is not installed Error: thunderbird is not installed Error: vlc is …


1
自制的腻子安装无法识别putty命令
我想使用Homebrew 安装腻子。我正在执行以下命令: brew install putty 这给出了看似正确的输出: ==> Downloading https://homebrew.bintray.com/bottles/putty-0.67.el_capitan.bottle.tar.gz Already downloaded: /Users/thisuser/Library/Caches/Homebrew/putty-0.67.el_capitan.bottle.tar.gz ==> Pouring putty-0.67.el_capitan.bottle.tar.gz 🍺 /usr/local/Cellar/putty/0.67: 11 files, 1.5M 但是,putty无法识别该命令: thisuser-541/41:~$ putty -bash: putty: command not found

2
我如何编写自制食谱?
自制食谱的主要特征是什么? 如果我想向hombrew-science资料库贡献一份食谱(例如udunits的一份食谱),我将如何转换这样的命令行脚本: wget ftp://ftp.unidata.ucar.edu/pub/udunits/udunits-2.1.24.tar.gz tar -xvf udunits-2.1.24.tar.gz cd udunits-2.1.24 ./configure make make check make clean 变成有效的食谱?
19 macos  homebrew 

2
如何在SoX中添加对.flac文件的支持?
我希望SoX将音频记录在.flac文件中。当我做: rec -t flac ~/Desktop/myrec.flac …它给出了以下错误: rec FAIL formats: no handler for given file type `flac' 我已经从“ brew”安装了SoX,并且确实安装了flac 1.2.1。 我浏览了http://sox.sourceforge.net/sox.pdf上的手册页,但没有得到我想要的信息。 如何添加对.flac文件的支持? 我在OS X 10.9.3上
18 macos  audio  homebrew  flac 

1
用自制软件安装ffmpeg吗?
我正在尝试在运行osx的Mac(El Capitain)上安装带有自制软件的ffmpeg及其库。安装完成,但是似乎仅安装了ffmpeg而不是ffprobe或drawtext。 我尝试使用以下命令重新安装: brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-frei0r --with-libass --with-libvo-aacenc --with-libvorbis --with-libvpx --with-opencore-amr --with-openjpeg --with-opus --with-rtmpdump --with-schroedinger --with-speex --with-theora --with-tools ..但是我明白了 Warning:ffmpeg-3.0.2 already installed, it's just not linked 我想念什么?我尝试删除并重试安装,但问题仍然存在。
18 macos  homebrew 

4
确定为使用自制软件安装的软件包提供的标志
当使用自制软件安装软件包时,是否有办法检查给出了哪些标志? 例如,emacs公式具有大量的标志。如果我做了 brew install emacs --with-glib --with-librsvg 我想稍后确定,对于emacs的自制安装,我给出了这些标志--with-glib --with-librsvg,而不给出其他任何标志。 带lua包的测试用例: 在安装软件包之前,信息会显示所有选项。 $ brew info lua lua: stable 5.2.3 (bottled) http://www.lua.org/ Not installed From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/lua.rb ==> Options --universal Build a universal binary --with-completion Enables advanced readline support --without-sigaction Revert to ANSI signal instead of improved POSIX sigaction 我只安装带有--with-completion标志的软件包。 $ brew install …
17 homebrew 

3
如何使用自制酒桶将某些应用程序更新到最新版本?
我注意到homebrew-cask提供的某些软件包使用的是最新版本的url和“最新”的版本号,例如dropbox和chrome。因此,它们永远不会通过升级brew upgrade。有没有使用homebrew-cask更新此类软件包的简单方法? 而且,如果我brew cask install dropbox再次打电话,它表明已经存在一些旧版本的缓存,我觉得这很愚蠢。


8
无法通过自制软件在优胜美地安装inkscape
看来我应该能够用类似的东西安装inkscape brew install inkscape 根据我在网上看到的内容。不幸的是,当我尝试这个我得到 Error: No available formula for inkscape Searching formulae... Searching taps... 我究竟做错了什么?

5
如何在代理后面安装自制程序包?
我正在代理工作。当我安装自制软件时,我已经修改了官方命令: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 通过添加一个-x选项来告诉curl有关代理的信息: /usr/bin/ruby -e "$(curl -x proxy.mydomain.com:3128 -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 而且效果很好。但是现在我要安装openssl: brew install openssl 从逻辑上讲,未检测到代理: curl: (7) Failed to connect to homebrew.bintray.com port 443: Connection refused Error: Failed to download resource "openssl" 如果我按照文档中所述设置环境变量: http_proxy=proxy.mydomain.com:3128 HTTPS_PROXY=proxy.mydomain.com:3128 ALL_PROXY=proxy.mydomain.com:3128 我得到同样的错误。添加http:或https:之前不会改变问题。 有任何想法吗?
17 homebrew  proxy 


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.