Manjaro 21.1.6 ViUR - Setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----------------------------------------------------------------------------------------------------------------- | |
Preconfig | |
----------------------------------------------------------------------------------------------------------------- | |
sudo pacman -Syu | |
sudo pacman -S base-devel | |
sudo pacman -S git | |
sudo pacman -S yay | |
----------------------------------------------------------------------------------------------------------------- | |
Python 3 | |
----------------------------------------------------------------------------------------------------------------- | |
sudo pacman -Syu python-pip | |
----------------------------------------------------------------------------------------------------------------- | |
pipenv | |
----------------------------------------------------------------------------------------------------------------- | |
cd ~ | |
pip install pipenv | |
echo 'export PATH="$HOME/.local/bin:$PATH"' >> .zshrc | |
----------------------------------------------------------------------------------------------------------------- | |
pyenv | |
----------------------------------------------------------------------------------------------------------------- | |
cd ~ | |
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash | |
echo 'export PATH=$HOME/.pyenv/bin:$PATH' >> .zshrc | |
echo 'eval "$(pyenv init -)"' >> .zshrc | |
echo 'eval "$(pyenv virtualenv-init -)"' >> .zshrc | |
----------------------------------------------------------------------------------------------------------------- | |
gcloud | |
----------------------------------------------------------------------------------------------------------------- | |
yay -S google-cloud-sdk | |
yay -S google-cloud-sdk-app-engine-python | |
yay -S google-cloud-sdk-app-engine-python-extras | |
gcloud init | |
gcloud auth application-default login | |
----------------------------------------------------------------------------------------------------------------- | |
node + npm | |
----------------------------------------------------------------------------------------------------------------- | |
yay -s nodejs | |
yay -s npm | |
sudo npm install -g n | |
sudo n stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment