From ccc91bfe29b3470718599f1c9de329d7674d2f3c Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Tue, 11 Apr 2023 22:05:04 +0200 Subject: [PATCH] :sparkles: add poetry - zsh setup --- makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 30586b5..15e8752 100644 --- a/makefile +++ b/makefile @@ -11,16 +11,25 @@ setup_alacritty: mkdir -p ~/.config/alacritty ln -s -f ~/dotfiles/.config/alacritty/alacritty.yml ~/.config/alacritty/alacritty.yml -setup_poetry: +setup_python_and_poetry: # TODO: make raget not tested properly + # sudo apt purge python3 python3-pip python3-openssl sudo apt-get update sudo apt-get upgrade sudo apt -y install libssl-dev libffi-dev python3 python3-pip python3-openssl + # # poetry install via https://python-poetry.org/docs/#installation curl -sSL https://install.python-poetry.org | python3 - sudo add-apt-repository ppa:deadsnakes/ppa + # + # additionally install 3.11 + # TODO: consider installing 3.11 first sudo apt install python3.11 + # + # setup poetry - zsh + mkdir $ZSH_CUSTOM/plugins/poetry + poetry completions zsh > $ZSH_CUSTOM/plugins/poetry/_poetry setup_tmux_a: