如何自动激活python虚拟环境?

时间:2020-03-16 14:55:30

标签: python ubuntu-14.04

您好,我在我的电脑上安装了两个python2.7.6和python2.7.11,并且我将python2.7.11用作虚拟环境版本。重新启动设备后,如何自动将终端设置为python2.7.11。

1 个答案:

答案 0 :(得分:0)

echo $PATH

这将打印出您当前配置的PATH。其中之一将包含python2.7.6

使用export PATH="new path here without the python folder"删除它
激活虚拟环境后,运行which python。将此路径添加到$PATH

示例:

export PATH="$PATH:/usr/local/bin/python"

将您所做的更改添加到~/.profile~/.bash_profile中。否则,您运行的命令将仅计入当前SSH会话。 profile在每个新的SSH会话上运行。