请帮忙
我需要在Mac OS上安装HTML整理 http://w3c.github.com/tidy-html5/
我在终端中调用命令并得不到任何结果:
$ make -C build/gmake/
make: *** build/gmake/: No such file or directory. Stop.
$ sh build/gnuauto/setup.sh && ./configure && make
sh: build/gnuauto/setup.sh: No such file or directory
有什么问题?我还应该安装什么?
答案 0 :(得分:24)
以下对我有用:
brew update
brew install tidy-html5
Shell输出:
➜ ~ brew install tidy-html5
==> Downloading https://homebrew.bintray.com/bottles/tidy-html5-4.9.26.yosemite.
######################################################################## 100.0%
==> Pouring tidy-html5-4.9.26.yosemite.bottle.tar.gz
/usr/local/Cellar/tidy-html5/4.9.26: 8 files, 1.2M
答案 1 :(得分:14)
tidy-html5
已提升为稳定版,因此您只需运行Homebrew命令的最新安装:
$ brew install tidy-html5
答案 2 :(得分:5)
它对我没有用,但这是做了什么:
Tap dupes repository:
brew tap homebrew/dupes
Homebrew dupes存储库包含
复制由OS X提供的软件的公式,但可能会提供更新版本或错误修正版本。
然后从dupes存储库安装:
brew install tidy --HEAD
答案 3 :(得分:1)
我刚刚在Mac OS X 10.9.1中安装了Tidy:
brew install tidy
它将自动安装其依赖项:automake和libtool
你可能会注意到,我在/ usr / bin / tidy下有一个默认的整洁版,它有一个版本:
HTML Tidy for Mac OS X released on 31 October 2006 - Apple Inc. build 15.12
安装Homebrew后,版本显示为
HTML Tidy for Mac OS X released on 25 March 2009
,在路径下:/ usr / local / Cellar / 20090325 / bin / tidy
答案 4 :(得分:1)
安装tidy5这是Tidy for OS X的最新版本:
确保您已安装homebrew。
然后点击dupes存储库,它提供了OS X系统提供的软件新版本/错误修复的brew配方。
$ brew tap homebrew/dupes
安装Tidy(tidy-html5)
$ brew install --HEAD tidy
解开dupes存储库
$ brew untap homebrew/dupes
调用
$ tidy5 -v
> HTML Tidy for Mac OS X version 5.4.0
答案 5 :(得分:0)
问题是文档没有提到您必须在bundle目录中运行第一个命令。给出的命令是相对于bundle目录的。
昨天我刚刚成功的步骤:
cd ~/Library/Application Support/Avian/Pristine Copy/Bundles
git clone https://github.com/w3c/tidy-html5
cd tidy-html5/
sudo make -C build/gmake/
sudo make install -C build/gmake/
不确定共享库部分,因为我没有完成这些步骤。