-
Notifications
You must be signed in to change notification settings - Fork 28
Description
I did
158 conda uninstall graphviz
from https://brew.sh/ I did
159 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
giving
Error:
homebrew-core is a shallow clone.
To brew update, first run:
git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
This command may take a few minutes to run due to the large size of the repository.
This restriction has been made on GitHub's request because updating shallow
clones is an extremely expensive operation due to the tree layout and traffic of
Homebrew/homebrew-core and Homebrew/homebrew-cask. We don't do this for you
automatically to avoid repeatedly performing an expensive unshallow operation in
CI systems (which should instead be fixed to not use shallow clones). Sorry for
the inconvenience!
Failed during: /usr/local/bin/brew update --force --quiet
So, as the message said, I ran
160 git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
followed by
161 brew install graphviz --with-gts
giving
Error: invalid option: --with-gts
The only thing I see that explains this is this medium article.
https://medium.com/@scrossoracle/building-graphviz-from-source-on-macos-b6a846d73949
Now, before I dive headlong into this crap, I'd like to make sure: Is this the correct direction?
Thanks.