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
4107 0
|
19天前
|
缓存 定位技术 Python
是时候跟Conda说再见了
是时候跟Conda说再见了
|
19天前
|
机器学习/深度学习 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
|
1月前
|
TensorFlow 算法框架/工具 Python
【Tensorflow】解决Tensorboard: ValueError: Duplicate plugins for name projector
解决TensorBoard版本冲突的方法,即通过卸载冲突的TensorFlow相关包然后重新安装所需的版本。
45 1
|
9月前
|
Shell
conda配置
conda配置
179 1
|
11月前
|
Python
conda使用
conda使用
147 0
|
存储 JSON 缓存
译 | Packages as layers, not groups
译 | Packages as layers, not groups
61 0
|
TensorFlow 算法框架/工具 Python
tensorflow安装错误:Could not find a version that satisfies the requirement tensorflow 解决
tensorflow安装错误:Could not find a version that satisfies the requirement tensorflow 解决