Windows10安装anaconda
2021-06-05 20:21
标签:3.3 creat dea ges x86_64 window 搭建环境 port keyword 一直在Ubuntu中使用pytorch,现在切换到Windows系统,使用anaconda搭建环境。 1、从https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/下载安装文件:Anaconda3-5.3.1-Windows-x86_64.exe,双击安装。 2、更新包管理镜像源: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes 3、更新所有包:conda update --all 4、安装包:conda install xxx,更新包:conda update xxx,删除包:conda remove,已安装包列表:conda list 5、创建环境:conda create -n env_name list of packages, 6、创建特定版本python的环境: 7、进入环境:activate my_env,离开deactivate 8、删除环境:conda env remove -n env_name 9、列出环境:conda env list 10、导出环境:conda env export > environment.yaml,通过环境文件创建环境:conda env create -f environment.yaml Windows10安装anaconda 标签:3.3 creat dea ges x86_64 window 搭建环境 port keyword 原文地址:https://www.cnblogs.com/zhengbiqing/p/10798545.htmllist of packages
是要安装在环境中的包的列表conda create -n py3 python=3
或 conda create -n py2 python=2 或 conda create -n py33 python=3.3
文章标题:Windows10安装anaconda
文章链接:http://soscw.com/index.php/essay/90961.html