conda channels

简介: conda channels

conda channels

what is conda channels ?

Conda channels are the locations where packages are stored. They serve as the base for hosting and managing packages. Conda packages are downloaded from remote channels, which are URLs to directories containing conda packages

set up channels

The conda-forge channel contains many general-purpose packages not already found in the defaults channel. The conda-forge is highest priority.
use following commands to add channels :

$ conda config --add channels defaults
$ conda config --add channels bioconda
$ conda config --add channels conda-forge
(base) [biocodee@localhost ~]$ conda config --show channels
channels:
  - conda-forge
  - bioconda
  - defaults
#order matters, use following cmd to make sure `conda-forge` highest priority, then `bioconda` next
(base) [biocodee@localhost ~]$ conda config --add channels bioconda
(base) [biocodee@localhost ~]$ conda config --add channels conda-forge
(base) [biocodee@localhost ~]$ conda config --show channels
channels:
  - conda-forge
  - bioconda
  - defaults
(base) [biocodee@localhost ~]$ conda config --prepend channels bioconda
Warning: 'bioconda' already in 'channels' list, moving to the top
(base) [biocodee@localhost ~]$ conda config --show channels
channels:
  - bioconda
  - conda-forge
  - defaults
(base) [biocodee@localhost ~]$ conda config --prepend channels conda-forge
Warning: 'conda-forge' already in 'channels' list, moving to the top
(base) [biocodee@localhost ~]$ conda config --show channels
channels:
  - conda-forge
  - bioconda
  - defaults

reference :

[1] Conda channels. website

目录
相关文章
|
11月前
|
并行计算 PyTorch 算法框架/工具
【pytorch】解决pytorch:Torch not compiled with CUDA enabled
【pytorch】解决pytorch:Torch not compiled with CUDA enabled
4172 0
|
22天前
|
缓存 定位技术 Python
是时候跟Conda说再见了
是时候跟Conda说再见了
|
22天前
|
机器学习/深度学习 PyTorch TensorFlow
conda、anaconda、pip、pytorch、tensorflow有什么关联?
conda、anaconda、pip、pytorch、tensorflow有什么关联?
|
4月前
|
缓存 安全 Go
|
1月前
|
机器学习/深度学习 TensorFlow 算法框架/工具
【Tensorflow+keras】解决cuDNN launch failure : input shape ([32,2,8,8]) [[{{node sequential_1/batch_nor
在使用TensorFlow 2.0和Keras训练生成对抗网络(GAN)时,遇到了“cuDNN launch failure”错误,特别是在调用self.generator.predict方法时出现,输入形状为([32,2,8,8])。此问题可能源于输入数据形状与模型期望的形状不匹配或cuDNN版本不兼容。解决方案包括设置GPU内存增长、检查模型定义和输入数据形状、以及确保TensorFlow和cuDNN版本兼容。
24 1
|
2月前
|
Python
conda常见命令
conda常见命令
61 12
|
2月前
|
Shell Python
一些常见的 Conda 命令
一些常见的 Conda 命令
|
9月前
|
Shell
conda配置
conda配置
179 1
如何 成功解决Anaconda中conda install 包出现 :InvalidSpecError: Invalid spec: =2.7 的问题
如何 成功解决Anaconda中conda install 包出现 :InvalidSpecError: Invalid spec: =2.7 的问题
如何 成功解决Anaconda中conda install 包出现 :InvalidSpecError: Invalid spec: =2.7 的问题
|
11月前
|
Python
conda使用
conda使用
148 0