基于anaconda下载python binary release二进制成果包
目的
不想自己编译不同版本的python,直接用现在编译好的。
基于源码编译速度慢
miniconda download python release
官方conda包仓库
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
国内mirror地址
conda install python=3.10本质
1.查找包
Conda 会在镜像源的 pkgs/main/linux-64/ 目录下查找与 python=3.10 相关的包。
2.下载包
Conda 会从指定的镜像源- - - https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
https://mirrors.ustc.edu.cn/anaconda/pkgs/main/linux-64/
python-3.10.4-xxx.conda
Python-3.12
3.安装包
Conda下载并解压包后,将 Python 安装到当前的 Conda 环境中。