Automating installation of project for cachyos
This commit is contained in:
+26
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user