From 06d5a0f58ddebf2228aa1a827f5b48282f48f50d Mon Sep 17 00:00:00 2001 From: whitequark Date: Fri, 9 Oct 2015 15:05:12 +0300 Subject: [PATCH] conda: add README. --- conda/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 conda/README.md diff --git a/conda/README.md b/conda/README.md new file mode 100644 index 000000000..e37f241c8 --- /dev/null +++ b/conda/README.md @@ -0,0 +1,18 @@ +Uploading conda packages (Python 3.5) +===================================== + +Preparing: + + 1. [Install miniconda][miniconda] + 2. `conda update -q conda` + 3. `conda install conda-build` + 4. `conda create -q -n py35 python=3.5` + 5. `conda config --add channels https://conda.anaconda.org/m-labs/channel/dev` + +Building: + + 1. `source activate py35` + 2. `conda build pkgname --python 3.5`; this command displays a path to the freshly built package + 3. `anaconda upload -c main -c dev` + +[miniconda]: http://conda.pydata.org/docs/install/quick.html#linux-miniconda-install