From 27f0896199ef7966453c57f936b28b8e25503016 Mon Sep 17 00:00:00 2001 From: "Korn, Uwe" Date: Thu, 2 Nov 2017 19:00:25 +0100 Subject: [PATCH 1/2] ARROW-1764: [Python] Add -c conda-forge for Windows dev installation instructions --- cpp/apidoc/Windows.md | 2 +- python/doc/source/development.rst | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cpp/apidoc/Windows.md b/cpp/apidoc/Windows.md index 774482ea1c4..8de5dea421f 100644 --- a/cpp/apidoc/Windows.md +++ b/cpp/apidoc/Windows.md @@ -41,7 +41,7 @@ conda config --add channels conda-forge Now, you can bootstrap a build environment ```shell -conda create -n arrow-dev cmake git boost-cpp flatbuffers rapidjson cmake thrift-cpp snappy zlib brotli gflags lz4-c zstd +conda create -n arrow-dev cmake git boost-cpp flatbuffers rapidjson cmake thrift-cpp snappy zlib brotli gflags lz4-c zstd -c conda-forge ``` Activate just created conda environment with pre-installed packages from diff --git a/python/doc/source/development.rst b/python/doc/source/development.rst index 3ca460d463a..7ef6a722be1 100644 --- a/python/doc/source/development.rst +++ b/python/doc/source/development.rst @@ -257,7 +257,8 @@ First, starting from fresh clones of Apache Arrow and parquet-cpp: .. code-block:: shell conda create -n arrow-dev cmake git boost-cpp ^ - flatbuffers snappy zlib brotli thrift-cpp rapidjson + flatbuffers snappy zlib brotli thrift-cpp rapidjson ^ + -c conda-forge activate arrow-dev As one git housekeeping item, we must run this command in our Arrow clone: From bdb6b3f183afe76ea484744c550c6872b7b3e214 Mon Sep 17 00:00:00 2001 From: dhirschf Date: Fri, 3 Nov 2017 08:34:48 +1000 Subject: [PATCH 2/2] Clarification of gflags channel --- cpp/apidoc/Windows.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpp/apidoc/Windows.md b/cpp/apidoc/Windows.md index 8de5dea421f..e7e83f1946b 100644 --- a/cpp/apidoc/Windows.md +++ b/cpp/apidoc/Windows.md @@ -44,6 +44,10 @@ Now, you can bootstrap a build environment conda create -n arrow-dev cmake git boost-cpp flatbuffers rapidjson cmake thrift-cpp snappy zlib brotli gflags lz4-c zstd -c conda-forge ``` +***Note:*** +> *Make sure to get the `conda-forge` build of `gflags` as the + naming of the library differs from that in the `defaults` channel* + Activate just created conda environment with pre-installed packages from previous step: