Skip to content

Instantly share code, notes, and snippets.

View alexandremendoncaalvaro's full-sized avatar

Alexandre Mendonça Alvaro alexandremendoncaalvaro

View GitHub Profile
@alexandremendoncaalvaro
alexandremendoncaalvaro / config-ubuntu-py-bash.sh
Last active July 1, 2023 02:16
Configura o pyenv e poetry no WSL
#!/bin/bash
set -ex
echo "[INFO] System Update and Upgrade.."
sudo apt update && sudo apt upgrade -y
echo "[INFO] Installing Python3/ Pyenv Dependencies.."
sudo apt install -y python3-pip git make build-essential libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
#!/bin/bash
set -ex
echo "[INFO] Installing Python3/ Pyenv Dependencies.."
sudo apt install -y python3-pip git make build-essential libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
gdb lcov libgdbm-dev libncurses5-dev libreadline6-dev \
lzma lzma-dev uuid-dev
@alexandremendoncaalvaro
alexandremendoncaalvaro / config-ubuntu-py-pt1.sh
Last active January 18, 2024 23:29
Script to config python with pyenv and pipenv + a nice Oh-my-Zsh Shell theme at Ubuntu
#!/bin/bash
set -ex
echo "[INFO] System Update and Upgrade.."
sudo apt update && sudo apt upgrade -y
echo "[INFO] Installing ZSH.."
sudo apt install -y zsh