anaconda - How to activate conda environment from powershell? - Stack Overflow

将 conda 加入环境变量,需要打开 anaconda navigator,手动 lauch 一个窗口,然后执行以下指令,就可以在 powershell 中使用 conda 了


conda init powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

Geek 强力卸载软件

Geek Uninstaller - Download

代理

Command Prompt

set HTTP_PROXY=http://your-proxy-url:port
set HTTPS_PROXY=https://your-proxy-url:port

PowerShell

$env:HTTP_PROXY = "<http://your-proxy-url>:port"
$env:HTTPS_PROXY = "<https://your-proxy-url>:port"