LoginSignup
18
19

More than 3 years have passed since last update.

PyPIパッケージをCondaコマンドでインストールする方法

Last updated at Posted at 2019-03-30

Conda を使っていてよく困ります。しかも意外とググっても出てこない。。。

こちらで紹介するのは、その解決方法の1つとして使える方法です。

PyPIのPythonモジュールからcondaパッケージを構築する

パッケージ作成
$ conda skeleton pypi <PACKAGE>
$ conda build <PACKAGE>

この後にインストールします。

インストール
conda install --use-local <PACKAGE>

参考

Building conda packages with conda skeleton — conda build 3.17.8+139.g395ee91c.dirty documentation
(conda skeleton を使った condaパッケージの構築方法)

18
19
1

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
18
19