LoginSignup
43
49

More than 3 years have passed since last update.

Condaのチャンネルとは?

Last updated at Posted at 2019-01-09

チャンネルとは?
Condaでは、anaconda.orgにユーザーが独自のリポジトリを作成し、
パッケージを登録・管理することが出来る

このリポジトリ名をチャンネルと呼ぶ

このチャンネルを使うことにより、ユーザは
$ conda install -c チャンネル名 パッケージ名
として、独自のパッケージをインストールすることが出来る


パッケージを検索
$ conda search --full-name パッケージ名
追加済みのチャンネルから指定のパッケージが有るか検索する

チャンネル一覧を取得
$ conda config --get channels

チャネルを追加
$ conda config --add channels チャンネル名
追加したチャンネルが# highest priorityになる

$ conda config --append channels チャンネル名
# highest priorityを移動させずに、チャンネルを追加できる

チャンネルを削除
$ conda config --remove channels チャンネル名

参考
Pythonメモ-44 (conda に conda-forge チャネルを追加) (conda config, channel, 追加パッケージ)
conda menpoとは?

43
49
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
43
49