hhh
hhh

Reputation: 52860

Anaconda: how to install packages not in Anaconda Directory?

Partially related to this question [now removed from SO] but now focus solely on installing packages in Anaconda that does not exist in Anaconda directory here. An example could be the COIN-OR CLP package here that has interfaces in R here and Python here. I want to make the COIN-OR CLP packages available to the Python/R clients in Anaconda.

What is the proper way of installing packages in Anaconda not existing in its directory?


Alternative 1. Installation of Coin-MP containing the COIN-OR CLP but

$ conda install coinmp
Fetching package metadata ...........

PackageNotFoundError: Package missing in current osx-64 channels: 
  - coinmp

Alternative 2. Installation from sources causes the error such that

svn co https://projects.coin-or.org/svn/CoinMP/stable/1.7 CoinMP
cd CoinMP
./configure -C
...
configure: WARNING: you should use --build, --host, --target
configure: WARNING: you should use --build, --host, --target

with both COIN-MP and COIN-OR CLP.

Upvotes: 4

Views: 2373

Answers (1)

Mike Müller
Mike Müller

Reputation: 85582

The channel conda-forge provides a compiled version. Install by specifying this channel:

conda install -c conda-forge coinmp

Upvotes: 5

Related Questions