由于常用的Anaconda和Miniconda现在都没有提供M1处理器支持的conda环境,虽然也不影响正常使用,但如果能有支持的版本会更好。以下是conda-forge提供的miniforge,目前有支持Apple Silicon的版本软件。下文将演示如何安装及使用。
下载软件
首先,下载 miniforge3,下载地址为:https://github.com/conda-forge/miniforge/#download
在页面中选择 Apple Silicon 版本
将下载好的脚本移动到用户目录,并赋予执行权限,安装即可。
安装过程
代码语言:shell复制mv Miniforge3-MacOSX-arm64.sh ~/
Chmod x Miniforge3-MacOSX-arm64.sh
./Miniforge3-MacOSX-arm64.sh
如果安装过程中,出现:
代码语言:shell复制xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools),
missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
则需要安装Xcode toolkit,安装方法如下:
代码语言:shell复制xcode-select --install
安装完成后,重新再安装Miniforge3即可。
完成安装后,重新激活一下配置文件
代码语言:shell复制# zsh为例,其他bash根据具体情况修改
source .zshrc
检查是否安装成功,在终端输入命令
代码语言:shell复制conda --version
python --version
使用
创建环境,指定为python3.9(默认)
代码语言:shell复制conda create -n env_name python==3.9
激活环境
代码语言:shell复制conda activate env_name
安装所需库
代码语言:shell复制conda install jupyter notebook