How do I set user PATH permanently to be able to access Pipenv from the zsh shell on Mac Catalina?
I am installing Pipenv for the first time. After successful installation, I cannot access it from the zsh shell. However, when I ran this code (I found somewhere else):
PYTHON_BIN_PATH="$(python3 -m site --user-base)/bin"
PATH="$PATH:$PYTHON_BIN_PATH"
I am able to run Pipenv from the terminal but only for that instance. Because, when I close and reopen the terminal, it doesn't work again until I run the code over again.
User@User-- ~ % pipenv
Error
zsh: command not found: pipenv
Using bash
, you would have added PATH="$PATH:$(python3 -m site --user-base)/bin"
to your .bash_profile
, so that each bash
session would have the proper directory to PATH
.
In zsh
, you would add that line to .zprofile
instead.
cd && touch .zprofile && open .zprofile
This command will create and open a .zprofile
file, and every path you save in the file will be permanently available on the terminal.
Android SDK paths for examples:
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools
For macOS versions that are older than macOS Catalina use .bash_profile
instead of .zprofile
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With