mirror of
https://github.com/boxpositron/absolute-dotfiles.git
synced 2026-02-28 03:30:37 +00:00
feat(setup-mac.sh): add check for anaconda installation and install anaconda using Homebrew if not already installed
This commit is contained in:
10
setup-mac.sh
10
setup-mac.sh
@@ -169,6 +169,16 @@ else
|
||||
curl -sSL https://install.python-poetry.org | python3 -
|
||||
fi
|
||||
|
||||
# Check if anaconda is installed
|
||||
|
||||
if command -v conda &> /dev/null; then
|
||||
echo "anaconda is installed."
|
||||
else
|
||||
echo "anaconda is not installed."
|
||||
echo "Installing anaconda..."
|
||||
brew install --cask anaconda
|
||||
fi
|
||||
|
||||
# Install Flutter version manager
|
||||
|
||||
if command -v fvm &> /dev/null; then
|
||||
|
||||
Reference in New Issue
Block a user