DISTRO: UBUNTU 24.04
sudo apt update && sudo apt upgrade -y
- Install basic packages
sudo apt install -y \
git \
curl \
zsh \
wget \
make \
llvm \
build-essential \
libssl-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
libncursesw5-dev \
xz-utils \
tk-dev \
libxml2-dev \
libxmlsec1-dev \
libffi-dev \
liblzma-dev
- Install ohmyzsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Install powerlevel10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
- Install zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
- Install zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
- Replace the zshrc default configs
cp .zshrc ~/.zshrc
cp .zshenv ~/.zshenv
cp .p10k.zsh ~/.p10k.zsh
- Install pyenv
curl https://pyenv.run | zsh
- Install poetry
curl -sSL https://install.python-poetry.org | python -
- Install python3.11
pyenv install 3.11 && pyenv global 3.11