Update pyenv2.sh

This commit is contained in:
tteckster 2022-12-07 18:38:58 -05:00 committed by GitHub
parent 124e0e191b
commit f5595b0709
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

View File

@ -73,3 +73,21 @@ systemctl enable --now esphomedashboard &>/dev/null
echo "Installed ESPHome Beta"
echo -e " Go to $(hostname -I | awk '{print $1}'):6052"
fi
read -r -p "Would you like to install Matter-Server? <y/N> " prompt
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
MTR="Y"
fi
if [[ $MTR == "Y" ]]; then
echo "Installing Matter Server"
apt-get install -y \
libcairo2-dev \
libjpeg62-turbo-dev \
libgirepository1.0-dev \
libpango1.0-dev \
libgif-dev \
g++ &>/dev/null
python3 -m pip install wheel
pip3 install --upgrade pip
pip install python-matter-server[server]
echo "Installed Matter Server"