Powershell7无法conda activate虚拟环境

在自己的用户文件夹下找到Powershell的配置文件

C:\Users\Administrator\Documents\PowerShell
Powershell7无法conda activate虚拟环境_第1张图片
打开Microsoft.PowerShell_profile.ps1进行编辑

在末尾加上下面代码即可

#region conda initialize
# !! Contents within this block are managed by 'conda init' !!
(& "D:\anaconda3\Scripts\conda.exe" "shell.powershell" "hook") | Out-String | Invoke-Expression
#endregion

你可能感兴趣的:(技巧,工作效率,windows)