创建环境
conda create -n test python=3.11
删除环境
conda remove --name test --all
检查更新
conda update -n base -c defaults conda
代理
conda config --set show_channel_urls yes
auto_activate_base: false
ssl_verify: true
channels:
- defaults
show_channel_urls: true
proxy_servers:
http: http://127.0.0.1:10809
https: http://127.0.0.1:10809
(自己改端口)
更新pip
python.exe -m pip install --upgrade pip