pip and python referring to different interpreters

I know "multiple-versions-of-python-mess" is nothing new but my question is more specific. I’m learning how to use venv (and pyenv, etc.) and I’ve run into a strange situation. I have a number of different versions of python installed (as one does). I use one of them, 3.9, to create a venv: $ /usr/local/Cellar/python@3.9/3.9.12_1/bin/python3 -m venv… Read More pip and python referring to different interpreters

Do you need to include export for environment variables in bash profile / zshrc

Do you need to include export for environment variables in bash profile / zshrc? I’m using Z shell (Zsh) for my terminal and in my .zshrc file I have the two lines: varOne="foo" export varTwo="bar" When I echo either variable (ex: echo $varOne) within the terminal, the correct value is output. So is there a… Read More Do you need to include export for environment variables in bash profile / zshrc