anaconda 安装
单词
anaconda /ˌænəˈkɑːndə/
参考
https://blog.csdn.net/weixin_56197703/article/details/124630222
下载地址
https://www.anaconda.com/
注意
- 安装路径中不能含空格和 unicode 编码
- 安装时不要勾选 Add Anaconda to my PATH environment variable 和 Register Anaconda as my default Python xxx 版本
打开
安装好后,在开始菜单中搜索 Anaconda Navigator,双击打开
启动命令行终端,安装 python
启动命令行终端
Launch CMD.exe Prompt
添加镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
查看是否添加成功
conda info
创建环境,并安装 python
conda create -n test python=3.10.6
查看环境列表
conda env list
激活环境
conda activate test
安装包
conda install xxx=版本号
删除环境
conda remove -n demo --all
标签:--,python,conda,https,anaconda,安装 From: https://www.cnblogs.com/SetariaViridis/p/18409163