From a2ff6eadc04c51c85de2573fe3748becdf590814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Thu, 16 Feb 2023 22:55:15 +0100 Subject: [PATCH] Added the default newest version for python --- .zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.zshrc b/.zshrc index 4f16bd4..40cbde8 100644 --- a/.zshrc +++ b/.zshrc @@ -182,6 +182,8 @@ if [[ "$(uname)" == "Darwin" ]]; then export PATH="$(brew --prefix python@$PYTHONVERSION)/bin:$PATH" alias python3='/opt/homebrew/bin/python$PYTHONVERSION' alias pip3='/opt/homebrew/bin/pip$PYTHONVERSION' + alias python='/opt/homebrew/bin/python$PYTHONVERSION' + alias pip='/opt/homebrew/bin/pip$PYTHONVERSION' alias lsblk="diskutil list" alias Update="~/.config/nvim/installer.sh; brew update; brew upgrade"