From d5bc5d157e011aa7cc3bb3fa46d53f88ee758f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Sun, 16 Oct 2022 23:16:53 +0200 Subject: [PATCH] Changed version of python from 3.9 to 3.10 in MacOS --- .zshrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index e8022bd..f114074 100644 --- a/.zshrc +++ b/.zshrc @@ -138,8 +138,8 @@ if [[ "$(uname)" == "Darwin" ]]; then # Other export export PATH="/usr/local/opt/openssl@3/bin:$PATH" - export PATH=$PATH:$HOME/Library/Python/3.9/bin - export PATH=$PATH:/usr/local/opt/python@3.9/Frameworks/Python.framework/Versions/3.9/bin + export PATH=$PATH:$HOME/Library/Python/3.10/bin + export PATH=$PATH:/usr/local/opt/python@3.10/Frameworks/Python.framework/Versions/3.10/bin export LDFLAGS="-L/usr/local/opt/openssl@3/lib" export CPPFLAGS="-I/usr/local/opt/openssl@3/include" export PKG_CONFIG_PATH="/usr/local/opt/openssl@3/lib/pkgconfig" @@ -147,6 +147,8 @@ if [[ "$(uname)" == "Darwin" ]]; then export PATH=$PATH:$GOPATH/bin export PATH=$PATH:$GOROOT/bin + alias python3='/opt/homebrew/bin/python3.10' + alias pip3='/opt/homebrew/bin/pip3.10' alias lsblk="diskutil list" alias Update="brew update; brew upgrade" alias ls="ls -Gh"