我之前使用 .bashrc 文件获取一些安装文件。
我已经删除了它,因为我发现它与我的电脑上的任何虚拟环境设置连接在一起。我会pip list
在环境中使用它来检查
现在,当启动我的普通 bash 终端时,虚拟环境按预期工作,但是当我在启动 tmux 后尝试使用相同的虚拟环境时。pip list
显示相同的包再次连接到列表中。
同样令人困惑的是,tmux 内部和外部的环境具有相同的来自which python3
.
我向内看了看.profile
,看起来很正常。
任何帮助,将不胜感激。
。轮廓:
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi