Skip to content
This repository has been archived by the owner on May 28, 2020. It is now read-only.

Latest commit

 

History

History
22 lines (18 loc) · 1.25 KB

non-standard_channels.md

File metadata and controls

22 lines (18 loc) · 1.25 KB

Non-standard channels

Binary packages can have different labels, the default one being main. Sometimes binaries are labeled with dev (e.g., newer versions which are pending certain tests), which makes them invisible from your anaconda client, unless you explicitly add the corresponding channel to that label, to your configuration:

$ conda config --add channels https://conda.anaconda.org/nlesc/label/dev

Beware: means that when you update or install binaries, you may pickup a newer version of a package, which has not been tested and put in "production" yet. A safer way to grab a binary from such a non-standard channel is to rather use directly:

conda install -c https://conda.anaconda.org/nlesc/label/dev <package>

Upon request, we build binaries with updated versions of ROOT and Python and temporarily put them in the dev channel, until properly tested. Fo example, ROOT 6.06 has new support for jupyter notebooks, or use JSROOT to implement ROOT graphics for web browsers. Currently in the dev channel we provide:

ROOT ROOT ROOT
Python 2.7 / 6.05.02 3.4 / 6.05.02 3.5 / 6.05.02

The server can be tested with:

serv = new THttpServer("http:8080");