fix: install.sh might break python environments

I should probably also fix my git because I hate making commits on GitHub.

Signed-off-by: BlockArchitech <hello@blockarchitech.com>
pull/1153/head
BlockArchitech 3 years ago committed by GitHub
parent cdaa4bd4dd
commit 1bde7b0be6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -62,7 +62,13 @@ function install_macos(){
fi fi
# Install the required packages # Install the required packages
echo "Installing required Packages" echo "Installing required Packages"
brew install python@3.10 tcl-tk python-tk if [! commad --version python3 &> /dev/null ]; then
echo "Installing python3"
brew install python@3.10
else
echo "python3 already installed."
fi
brew install tcl-tk python-tk
} }
# Function to install for arch (and other forks like manjaro) # Function to install for arch (and other forks like manjaro)

Loading…
Cancel
Save