在Mac上安装Anaconda
Posted sanqima
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Mac上安装Anaconda相关的知识,希望对你有一定的参考价值。
这里以在Mac mini(M1芯片)上安装Anaconda3为例,进行说明。
1 安装Anaconda
官网地址: https://www.anaconda.com/products/individual
下载软件,双击该文件,一路默认,直到安装完成,如图(1)所示。
2 设置环境
2.1 使能conda
## 1)直接使能
source ~/.zshrc
## 2)指定路径后,再使能
## 有的电脑,需要指定Anaconda的路径,才能激活conda环境变量
## 在~/.zshrc里指定Anaconda的路径
export PATH="/Users/yourname/opt/anaconda3/bin:$PATH"
## 使能
source ~/.zshrc
2.2 修改~/.condarc文件
打开~/.condarc文件
sudo vi ~/.condarc
将~/.condarc文件,修改成如下:
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
2.3 创建python3虚拟环境
## 创建python v3.9虚拟环境
conda create -n py39 python=3.9
yes
## 激活 python v3.9 (win10使用)
conda activate py39
2.4 创建python2虚拟环境
## 创建python v2.7虚拟环境
conda create -n py27 python=2.7
yes
## 激活 python v2.7
conda activate py27
查看conda配置:
conda info
效果如下:
以上是关于在Mac上安装Anaconda的主要内容,如果未能解决你的问题,请参考以下文章
怎么在mac 系统上使用Python?怎么安装Anaconda
怎么在mac 系统上使用Python?怎么安装Anaconda