Automating installation of project for cachyos

This commit is contained in:
2025-11-27 22:40:47 +01:00
parent 0ff8c4fb6a
commit 3c61fa51d9
+26 -1
View File
@@ -1,4 +1,29 @@
# Linux installation (Arch, CachyOS)
# [ Linux installation (CachyOS: Arch, Fish, KDE Wallet) ] #
echo Starting installation for CachyOS (using Arch, Fish Console and KDE Wallet)
# required apps
echo Installing required software. Please enter sudo password.
sudo pacman -S git code # python python-pip # python and pip should be installed already
# git setup
echo Setting up git.
echo Git: What is your user name?
read git_username
echo Git: What is your e-mail address?
read git_email
git config --global user.name "$git_username"
git config --global user.email "$git_email"
echo Enabling storage for git credentials using KDE Wallet
git config --global credential.helper libsecret
# python setup
echo Python setup
python3 -m venv venv
source venv/bin/activate.fish
echo Installing Python Telegram Bot Library
pip install python-telegram-bot