30 lines
817 B
Bash
Executable File
30 lines
817 B
Bash
Executable File
# [ 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
|