Anaconda # 1、查看已有虚拟环境 conda info --envs #2、创建新的虚拟环境 conda create --name newName python=3.7 #3、 激活新建的虚拟环境 conda activate newName tmux #新建进程 tmux new -s newsession #连接进程 tmux attach -t <name> #杀死进程 tmux kill-session -t <name>