mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-25 20:32:46 +00:00
Anaconda mirror service is resumed
Signed-off-by: zyx <zz593141477@gmail.com>
This commit is contained in:
parent
f63066c08d
commit
582e2edf94
|
|
@ -55,6 +55,10 @@
|
|||
"name": "alpine",
|
||||
"desc": "Alpine Linux 的安装镜像和官方软件包仓库"
|
||||
},
|
||||
{
|
||||
"name": "anaconda",
|
||||
"desc": "用于科学计算的 Python 发行版"
|
||||
},
|
||||
{
|
||||
"name": "antergos",
|
||||
"desc": "基于 Arch Linux 的使用 GNOME 3 的发行版,曾用名 Cinnarch"
|
||||
|
|
|
|||
|
|
@ -6,4 +6,65 @@ mirrorid: anaconda
|
|||
|
||||
## Anaconda 镜像使用帮助
|
||||
|
||||
[关于停止Anaconda镜像服务的通知](../../news/close-anaconda-service/)
|
||||
Anaconda 是一个用于科学计算的 Python 发行版,支持 Linux, Mac, Windows, 包含了众多流行的科学计算、数据分析的 Python 包。
|
||||
|
||||
Anaconda 安装包可以到 <https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/> 下载。
|
||||
|
||||
TUNA 还提供了 Anaconda 仓库的镜像,运行以下命令:
|
||||
|
||||
```
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
|
||||
conda config --set show_channel_urls yes
|
||||
```
|
||||
|
||||
即可添加 Anaconda Python 免费仓库。
|
||||
|
||||
运行 `conda install numpy` 测试一下吧。
|
||||
|
||||
## Miniconda 镜像使用帮助
|
||||
|
||||
Miniconda 是一个 Anaconda 的轻量级替代,默认只包含了 python 和 conda,但是可以通过 pip 和 conda 来安装所需要的包。
|
||||
|
||||
Miniconda 安装包可以到 <https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/> 下载。
|
||||
|
||||
## Conda 三方源
|
||||
|
||||
当前tuna还维护了一些anaconda三方源。
|
||||
|
||||
### Conda Forge
|
||||
|
||||
```
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
|
||||
```
|
||||
|
||||
### msys2
|
||||
|
||||
```
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
|
||||
```
|
||||
|
||||
### bioconda
|
||||
|
||||
```
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
|
||||
```
|
||||
|
||||
### menpo
|
||||
|
||||
```
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/
|
||||
```
|
||||
|
||||
### pytorch
|
||||
|
||||
```
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
|
||||
|
||||
# for legacy win-64
|
||||
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/peterjc123/
|
||||
```
|
||||
|
||||
### 其他三方源
|
||||
|
||||
对于conda的其他三方源,如有需要请在[这个issue](https://github.com/tuna/issues/issues/112)中提出请求,我们会综合考虑多方因素来酌情增减。
|
||||
|
|
|
|||
|
|
@ -6,4 +6,5 @@ mirrorid: tensorflow
|
|||
|
||||
# TensorFlow 镜像使用帮助
|
||||
|
||||
请通过 pypi 安装 TensorFlow。当前 tensorflow 这个仓库已经不再更新,保留下来仅仅是历史原因。
|
||||
请通过 pypi 安装 TensorFlow。当前 tensorflow 这个仓库已经不再更新,保留下来仅仅是历史原因。
|
||||
|
||||
|
|
|
|||
|
|
@ -290,6 +290,46 @@ type = $4
|
|||
version = MikTeX $1
|
||||
category = app
|
||||
|
||||
[anaconda3]
|
||||
distro = Conda
|
||||
listvers = 1
|
||||
location = anaconda/archive/Anaconda*
|
||||
pattern = (Anaconda3)-(\d+.\d+.\d+)-(Windows|Linux|MacOSX)-(x86_64|x86).\w+
|
||||
platform = $3
|
||||
type = $4
|
||||
version = $1 $2
|
||||
category = app
|
||||
|
||||
[anaconda2]
|
||||
distro = Conda
|
||||
listvers = 1
|
||||
location = anaconda/archive/Anaconda*
|
||||
pattern = (Anaconda2)-(\d+.\d+.\d+)-(Windows|Linux|MacOSX)-(x86_64|x86).\w+
|
||||
platform = $3
|
||||
type = $4
|
||||
version = $1 $2
|
||||
category = app
|
||||
|
||||
[miniconda3]
|
||||
distro = Conda
|
||||
listvers = 1
|
||||
location = anaconda/miniconda/Miniconda*
|
||||
pattern = (Miniconda3)-(\d+.\d+.\d+)-(Windows|Linux|MacOSX)-(x86_64|x86).\w+
|
||||
platform = $3
|
||||
type = $4
|
||||
version = $1 $2
|
||||
category = app
|
||||
|
||||
[miniconda2]
|
||||
distro = Conda
|
||||
listvers = 1
|
||||
location = anaconda/miniconda/Miniconda*
|
||||
pattern = (Miniconda2)-(\d+.\d+.\d+)-(Windows|Linux|MacOSX)-(x86_64|x86).\w+
|
||||
platform = $3
|
||||
type = $4
|
||||
version = $1 $2
|
||||
category = app
|
||||
|
||||
[lineageos]
|
||||
distro = LineageOS
|
||||
listvers = 1
|
||||
|
|
|
|||
Loading…
Reference in New Issue