Anaconda安装及入门教程(Windows、Ubuntu)

简介: Anaconda安装及入门教程(Windows、Ubuntu)

@[TOC]

安装Anaconda3

Ubuntu

一、下载Anaconda3-5.2.0-Linux-x86_64.sh(其他版本可以通过排序查找,参见下方Windows中的下载说明)

https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

二、运行 .sh 文件

bash Anaconda3-5.2.0-Linux-x86_64.sh

zsh中则用

zsh Anaconda3-5.2.0-Linux-x86_64.sh

输入yes,显示文件即将安装的位置,按enter即可安装
安装完成后,收到加入环境变量的提示信息,输入yes
最后重启终端即可

若忘记添加环境,则执行

conda init

即可添加环境变量

Windows

一、同样是去清华的镜像站下载,点击这个箭头即可排序出最新版本的Anaconda安装包
在这里插入图片描述
二、下载好后双击运行,按照图中红色箭头的指示点击
在这里插入图片描述
同意用户协议
在这里插入图片描述
这一步是选择为电脑上的哪些用户安装,Just Me是当前用户,All Users是所有用户
在这里插入图片描述
选择安装路径,我用的是默认路径,没有改
在这里插入图片描述
接下来这两个都要打勾,然后Install即可
在这里插入图片描述
之后一路next,最后点击Finish即可

使用

换源

清华源
若没有~/.condarc,则先执行该命令生成.condarc

conda config --set show_channel_urls yes

然后输入以下内容

channels:
  - defaults
show_channel_urls: true
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch-lts: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud

保存后执行该命令清除索引缓存

conda clean -i

设置不自动启用conda环境

conda config --set auto_activate_base false

若要改为自启动,将false改为true即可

显示环境

conda info -e

默认环境为base
*表示当前正在使用的环境

创建环境

conda create -n py27 python=2.7

则会创建python版本为2.7的环境

激活环境

conda activate py27

则会将环境切换为名为py27的环境

查找某个包的版本

conda search 包名

会列出这个包的所有可以下载的版本

安装某个版本的包

conda install 包名=版本

会安装这个包的特定版本,如果只输入包名,默认安装最新版本

虚拟环境中安装包

conda install -n py27 conda

向py27环境中安装了conda包
## 删除虚拟环境

conda remove -n your_env_name --all

删除特定的包

conda remove --name your_env_name  package_name

复制环境

conda create -n your_env_name --clone your_new_env_name

设置代理

Ubuntu

编辑 ~/.condarc ,输入以下内容,将http、https处改为自己实际的地址即可

proxy_servers:
  http: http://127.0.0.1:8889
  https: http://127.0.0.1:8889

Windows

编辑用户目录下的.condarc,例如C:\Users\admin.condarc

proxy_servers:
  http: http://127.0.0.1:1080
  https: http://127.0.0.1:1080
目录
相关文章
|
21天前
|
Ubuntu Linux 测试技术
Linux系统之Ubuntu安装cockpit管理工具
【10月更文挑战第13天】Linux系统之Ubuntu安装cockpit管理工具
75 4
Linux系统之Ubuntu安装cockpit管理工具
|
25天前
|
监控 Ubuntu Linux
视频监控笔记(五):Ubuntu和windows时区同步问题-your clock is behind
这篇文章介绍了如何在Ubuntu和Windows系统中通过设置相同的时区并使用ntp服务来解决时间同步问题。
55 4
视频监控笔记(五):Ubuntu和windows时区同步问题-your clock is behind
|
22天前
|
Kubernetes Ubuntu Docker
从0开始搞K8S:使用Ubuntu进行安装(环境安装)
通过上述步骤,你已经在Ubuntu上成功搭建了一个基本的Kubernetes单节点集群。这只是开始,Kubernetes的世界广阔且深邃,接下来你可以尝试部署应用、了解Kubernetes的高级概念如Services、Deployments、Ingress等,以及探索如何利用Helm等工具进行应用管理,逐步提升你的Kubernetes技能树。记住,实践是最好的老师,不断实验与学习,你将逐渐掌握这一强大的容器编排技术。
62 1
|
22天前
|
数据安全/隐私保护 Windows
安装 Windows Server 2019
安装 Windows Server 2019
|
22天前
|
Windows
安装 Windows Server 2003
安装 Windows Server 2003
|
23天前
|
NoSQL Shell MongoDB
Windows 平台安装 MongoDB
10月更文挑战第10天
33 0
Windows 平台安装 MongoDB
|
7天前
|
消息中间件 Ubuntu Java
Ubuntu系统上安装Apache Kafka
Ubuntu系统上安装Apache Kafka
|
14天前
|
Linux 网络安全 虚拟化
适用于Linux的Windows子系统(WSL1)的安装与使用记录
并放到启动文件夹,就可以开机自动启动了。
19 0
|
14天前
|
Ubuntu Linux
Ubuntu 16.04下无法安装.deb的解决方法
希望以上策略能有效协助您克服在Ubuntu 16.04中安装.deb文件时遇到的挑战。
14 0
|
22天前
|
Windows
安装Windows XP系统
安装Windows XP系统