📜  将 python 添加到路径 zsh - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:00.941000             🧑  作者: Mango

代码示例1
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.